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

Jean-Noel Rouvignac
16.23.2015 e0190b324fb92c3b82cd143d3aab1eeede951e94
opendj-server-legacy/src/main/java/org/opends/server/schema/NumericStringSyntax.java
@@ -240,7 +240,7 @@
    for (int i=0; i < length; i++)
    {
      char c = valueString.charAt(i);
      if (! (isDigit(c) || (c == ' ')))
      if (!isDigit(c) && c != ' ')
      {
        invalidReason.append(WARN_ATTR_SYNTAX_NUMERIC_STRING_ILLEGAL_CHAR.get(valueString, c, i));
        return false;