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

Jean-Noel Rouvignac
17.18.2015 fb60be6f76ed311c0e78e923977da0817118b568
Fix problem introduced in r11759
1 files modified
12 ■■■■ changed files
opendj-server-legacy/src/main/java/org/opends/server/types/DN.java 12 ●●●● patch | view | raw | blame | history
opendj-server-legacy/src/main/java/org/opends/server/types/DN.java
@@ -26,6 +26,11 @@
 */
package org.opends.server.types;
import static org.forgerock.util.Reject.*;
import static org.opends.messages.SchemaMessages.*;
import static org.opends.server.config.ConfigConstants.*;
import static org.opends.server.util.StaticUtils.*;
import java.io.Serializable;
import java.util.LinkedList;
import java.util.List;
@@ -40,11 +45,6 @@
import org.forgerock.util.Reject;
import org.opends.server.core.DirectoryServer;
import static org.forgerock.util.Reject.*;
import static org.opends.messages.SchemaMessages.*;
import static org.opends.server.config.ConfigConstants.*;
import static org.opends.server.util.StaticUtils.*;
/**
 * This class defines a data structure for storing and interacting
 * with the distinguished names associated with entries in the
@@ -1535,7 +1535,7 @@
        else
        {
          byte ch1 = nameBytes.byteAt(1);
          byte ch2 = nameBytes.byteAt(1);
          byte ch2 = nameBytes.byteAt(2);
          if ((ch1 == 'i' || ch1 == 'I')
              && (ch2 == 'd' || ch2 == 'D')
              && nameBytes.byteAt(3) == '.')