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

matthew_swift
08.52.2009 460075839833c278f128c1482638767cdc68bfc7
opendj-sdk/sdk/src/org/opends/sdk/schema/IntegerFirstComponentEqualityMatchingRuleImpl.java
@@ -32,7 +32,6 @@
import org.opends.sdk.*;
import com.sun.opends.sdk.util.Message;
import com.sun.opends.sdk.util.StaticUtils;
import com.sun.opends.sdk.util.SubstringReader;
@@ -77,7 +76,7 @@
          "IntegerFirstComponentEqualityMatchingRule", "getAssertion",
          e);
      final Message message =
      final LocalizableMessage message =
          ERR_EMR_INTFIRSTCOMP_FIRST_COMPONENT_NOT_INT.get(value
              .toString());
      throw DecodeException.error(message);
@@ -101,7 +100,7 @@
    {
      // This means that the value was empty or contained only
      // whitespace. That is illegal.
      final Message message = ERR_ATTR_SYNTAX_EMPTY_VALUE.get();
      final LocalizableMessage message = ERR_ATTR_SYNTAX_EMPTY_VALUE.get();
      throw DecodeException.error(message);
    }
@@ -110,7 +109,7 @@
    final char c = reader.read();
    if (c != '(')
    {
      final Message message =
      final LocalizableMessage message =
          ERR_ATTR_SYNTAX_EXPECTED_OPEN_PARENTHESIS.get(definition,
              (reader.pos() - 1), String.valueOf(c));
      throw DecodeException.error(message);