mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

Matthew Swift
01.53.2012 4be39cc724440ef056b75c6f9d0fbe4fc14fd87b
Fix compiler warning.
1 files modified
7 ■■■■ changed files
opendj3/opendj-ldap-sdk/src/test/java/org/forgerock/opendj/ldif/LDIFEntryReaderTestCase.java 7 ●●●● patch | view | raw | blame | history
opendj3/opendj-ldap-sdk/src/test/java/org/forgerock/opendj/ldif/LDIFEntryReaderTestCase.java
@@ -1639,11 +1639,6 @@
     */
    @Test(expectedExceptions = NullPointerException.class)
    public void testValueOfLDIFEntryDoesntAllowNull() throws Exception {
        LDIFEntryReader reader = new LDIFEntryReader();
        try {
            reader.valueOfLDIFEntry(null);
        } finally {
            reader.close();
        }
        LDIFEntryReader.valueOfLDIFEntry((String[]) null);
    }
}