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

Matthew Swift
01.53.2012 3b85799f5cccc40d51fb3386ef92aab2eb03239d
Fix compiler warning.
1 files modified
7 ■■■■ changed files
opendj-sdk/opendj3/opendj-ldap-sdk/src/test/java/org/forgerock/opendj/ldif/LDIFEntryReaderTestCase.java 7 ●●●● patch | view | raw | blame | history
opendj-sdk/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);
    }
}