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

boli
17.24.2009 3181453e2fa1149121b3f1ec202e7e97bc3bbb29
opends/src/server/org/opends/server/schema/NameFormSyntax.java
@@ -22,7 +22,7 @@
 * CDDL HEADER END
 *
 *
 *      Copyright 2006-2008 Sun Microsystems, Inc.
 *      Copyright 2006-2009 Sun Microsystems, Inc.
 */
package org.opends.server.schema;
import org.opends.messages.Message;
@@ -1178,10 +1178,10 @@
    }
    else if (c == '(')
    {
      startPos++;
      while (true)
      {
        // Skip over any leading spaces;
        startPos++;
        while ((startPos < length) && ((c = valueStr.charAt(startPos)) == ' '))
        {
          startPos++;
@@ -1199,6 +1199,7 @@
        if (c == ')')
        {
          // This is the end of the list.
          startPos++;
          break;
        }
        else if (c == '(')