opendj3/opendj-ldap-sdk-examples/src/main/java/org/forgerock/opendj/examples/Controls.java
@@ -94,7 +94,6 @@ * specific credentials to connect, and ensure that your application has access * to use the LDAP controls needed. */ @SuppressWarnings("resource") public final class Controls { /** opendj3/opendj-ldap-sdk-examples/src/main/java/org/forgerock/opendj/examples/GetADChangeNotifications.java
@@ -61,7 +61,6 @@ * * <p>The {@code baseDN} must be the root of a naming context in this example. */ @SuppressWarnings("resource") public final class GetADChangeNotifications { /** * Main method. opendj3/opendj-ldap-sdk-examples/src/main/java/org/forgerock/opendj/examples/GetInfo.java
@@ -38,7 +38,6 @@ /** * Demonstrates accessing server information about capabilities and schema. */ @SuppressWarnings("resource") public final class GetInfo { // Connection information private static String host; opendj3/opendj-ldap-sdk-examples/src/main/java/org/forgerock/opendj/examples/Modify.java
@@ -50,7 +50,6 @@ * <host> <port> <username> <password> [<ldifFile>] * </pre> */ @SuppressWarnings("resource") public final class Modify { /** * Main method. opendj3/opendj-ldap-sdk-examples/src/main/java/org/forgerock/opendj/examples/Search.java
@@ -50,7 +50,6 @@ * <baseDN> <scope> <filter> [<attibute> <attribute> ...] * </pre> */ @SuppressWarnings("resource") public final class Search { /** * Main method. opendj3/opendj-ldap-sdk/src/test/java/org/forgerock/opendj/ldap/AbstractAsynchronousConnectionTestCase.java
@@ -61,7 +61,7 @@ * Unit test for AbstractAsynchronousConnection. The tests verify that all * synchronous operation methods delegate to the equivalent asynchronous method. */ @SuppressWarnings({ "javadoc", "resource" }) @SuppressWarnings("javadoc") public class AbstractAsynchronousConnectionTestCase extends SdkTestCase { private final class MockConnection extends AbstractAsynchronousConnection { @@ -501,8 +501,8 @@ Responses.newSearchResultEntry("cn=test,ou=org")); final SearchRequest request = Requests.newSingleEntrySearchRequest("cn=test", SearchScope.BASE_OBJECT, "(objectClass=*)"); @SuppressWarnings("unchecked") ResultHandler<SearchResultEntry> handler = mock(ResultHandler.class); try { mockConnection.searchSingleEntryAsync(request, handler).get(); failWasExpected(MultipleEntriesFoundException.class); @@ -530,8 +530,8 @@ final Connection mockConnection = new MockConnection(ResultCode.UNWILLING_TO_PERFORM); final SearchRequest request = Requests.newSingleEntrySearchRequest("cn=test", SearchScope.BASE_OBJECT, "(objectClass=*)"); @SuppressWarnings("unchecked") ResultHandler<SearchResultEntry> handler = mock(ResultHandler.class); try { mockConnection.searchSingleEntryAsync(request, handler).get(); failWasExpected(ErrorResultException.class); opendj3/opendj-ldap-sdk/src/test/java/org/forgerock/opendj/ldap/EntryTestCase.java
@@ -43,7 +43,7 @@ /** * Test {@code Entry}. */ @SuppressWarnings({ "javadoc", "resource" }) @SuppressWarnings("javadoc") public final class EntryTestCase extends SdkTestCase { private static interface EntryFactory { opendj3/opendj-ldap-sdk/src/test/java/org/forgerock/opendj/ldif/LDIFTestCase.java
@@ -2360,7 +2360,6 @@ * * @throws Exception */ @SuppressWarnings("resource") @Test(expectedExceptions = DecodeException.class) public final void testLdifPatchInvalidChangeRecord() throws Exception { // @formatter:off @@ -2399,7 +2398,6 @@ * * @throws Exception */ @SuppressWarnings("resource") @Test(expectedExceptions = DecodeException.class) public final void testFailFastPatchOnModifyRequestFailsDueToWrongDN() throws Exception { @@ -2437,7 +2435,6 @@ * * @throws Exception */ @SuppressWarnings("resource") @Test() public final void testOverwritePatchOnModifyRequestSucceedsEvenIfWrongDN() throws Exception { @@ -2485,7 +2482,6 @@ * * @throws Exception */ @SuppressWarnings("resource") @Test(expectedExceptions = DecodeException.class) public final void testFailFastPatchOnModifyDNRequestFailsDueToWrongDN() throws Exception { final RejectedChangeRecordListener listener = RejectedChangeRecordListener.FAIL_FAST; @@ -2522,7 +2518,6 @@ * * @throws Exception */ @SuppressWarnings("resource") @Test() public final void testOverwritePatchOnModifyDNRequestSucceedsEvenWithWrongDN() throws Exception { final RejectedChangeRecordListener listener = RejectedChangeRecordListener.OVERWRITE; @@ -2569,7 +2564,6 @@ * * @throws Exception */ @SuppressWarnings("resource") @Test(expectedExceptions = DecodeException.class) public final void testFailFastPatchOnModifyDNRequestFailsDueToDuplicateEntry() throws Exception { final RejectedChangeRecordListener listener = RejectedChangeRecordListener.FAIL_FAST; @@ -2616,7 +2610,6 @@ * * @throws Exception */ @SuppressWarnings("resource") @Test() public final void testOverwritePatchOnModifyDNRequestSucceedsEvenWithDuplicateEntry() throws Exception { final RejectedChangeRecordListener listener = RejectedChangeRecordListener.OVERWRITE; opendj3/opendj-ldap-toolkit/src/main/java/com/forgerock/opendj/ldap/tools/LDAPModify.java
@@ -232,7 +232,6 @@ return verbose.isPresent(); } @SuppressWarnings("resource") private int run(final String[] args) { // Create the command-line argument parser for use with this // program. opendj3/opendj-ldap-toolkit/src/main/java/com/forgerock/opendj/ldap/tools/LDAPSearch.java
@@ -221,7 +221,6 @@ return verbose.isPresent(); } @SuppressWarnings("resource") private int run(final String[] args, final boolean returnMatchingEntries) { // Create the command-line argument parser for use with this // program. opendj3/opendj-ldap-toolkit/src/test/java/com/forgerock/opendj/ldap/tools/ConnectionFactoryProviderTest.java
@@ -36,6 +36,7 @@ import org.testng.annotations.BeforeMethod; import org.testng.annotations.Test; @SuppressWarnings("javadoc") public class ConnectionFactoryProviderTest extends ToolsTestCase { @Mock