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

Jean-Noel Rouvignac
03.21.2014 5ae40296386ae7b3465f2bc23cf41ce227a40bbc
opendj3-server-dev/src/server/org/opends/server/schema/MatchingRuleSyntax.java
@@ -301,7 +301,6 @@
        {
          if (lastWasPeriod)
          {
            invalidReason.append(
                    ERR_ATTR_SYNTAX_MR_DOUBLE_PERIOD_IN_NUMERIC_OID.get(
                            valueStr, (pos-1)));
@@ -349,7 +348,6 @@
    // description.  Otherwise, parse out the OID.
    if (pos >= length)
    {
      invalidReason.append(ERR_ATTR_SYNTAX_MR_TRUNCATED_VALUE.get(valueStr));
      return false;
    }
@@ -408,7 +406,6 @@
        // We must be at the end of the value.  If not, then that's a problem.
        if (pos < length)
        {
          invalidReason.append(
                  ERR_ATTR_SYNTAX_MR_UNEXPECTED_CLOSE_PARENTHESIS.get(
                          valueStr, (pos-1)));
@@ -587,7 +584,6 @@
    // Make sure that a syntax was specified.
    if (syntax == null)
    {
      invalidReason.append(ERR_ATTR_SYNTAX_MR_NO_SYNTAX.get(valueStr));
      return false;
    }