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

Matthew Swift
21.14.2013 e7b3515b687c082229fc3106ea7badbc2dc61d4a
opendj3/opendj-ldap-sdk/src/main/java/org/forgerock/opendj/ldif/AbstractLDIFWriter.java
@@ -353,10 +353,9 @@
         * If the value contains a null, newline, or return character, then it
         * needs to be base64 encoded.
         */
        byte b;
        for (int i = 0; i < bytes.length(); i++) {
            b = bytes.byteAt(i);
            if (b > 127 || b < 0) {
            final byte b = bytes.byteAt(i);
            if (b < 0) {
                return true;
            }