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

Matthew Swift
04.42.2012 8182a5e7e6e25e7f49118be19dfabe8faa4741c0
opendj3/opendj-ldap-sdk/src/main/java/org/forgerock/opendj/ldif/AbstractLDIFReader.java
@@ -257,7 +257,7 @@
                }
                try {
                    value = ByteString.valueOfBase64String(ldifLine.substring(pos));
                    value = ByteString.valueOfBase64(ldifLine.substring(pos));
                } catch (final LocalizedIllegalArgumentException e) {
                    // The value did not have a valid base64-encoding.
                    final LocalizableMessage message =
@@ -607,7 +607,7 @@
            final String base64DN = ldifLine.substring(pos);
            try {
                dnString = ByteString.valueOfBase64String(base64DN).toString();
                dnString = ByteString.valueOfBase64(base64DN).toString();
            } catch (final LocalizedIllegalArgumentException e) {
                // The value did not have a valid base64-encoding.
                final LocalizableMessage message =
@@ -662,7 +662,7 @@
            }
            try {
                pair.value = ByteString.valueOfBase64String(ldifLine.substring(pos)).toString();
                pair.value = ByteString.valueOfBase64(ldifLine.substring(pos)).toString();
            } catch (final LocalizedIllegalArgumentException e) {
                pair.key = null;
                return ldifLine;