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

matthew_swift
28.47.2010 f2160f4bd1c8ac67e5a86a6710d431e8932877f9
sdk/src/org/opends/sdk/schema/IntegerOrderingMatchingRuleImpl.java
@@ -28,7 +28,7 @@
import static com.sun.opends.sdk.messages.Messages.*;
import static com.sun.opends.sdk.messages.Messages.WARN_ATTR_SYNTAX_ILLEGAL_INTEGER;
import org.opends.sdk.ByteSequence;
import org.opends.sdk.ByteString;
@@ -40,15 +40,15 @@
/**
 * This class defines the integerOrderingMatch matching rule defined in
 * X.520 and referenced in RFC 4519.
 * This class defines the integerOrderingMatch matching rule defined in X.520
 * and referenced in RFC 4519.
 */
final class IntegerOrderingMatchingRuleImpl extends
    AbstractOrderingMatchingRuleImpl
{
  public ByteString normalizeAttributeValue(Schema schema,
      ByteSequence value) throws DecodeException
  public ByteString normalizeAttributeValue(final Schema schema,
      final ByteSequence value) throws DecodeException
  {
    try
    {
@@ -59,8 +59,8 @@
      StaticUtils.DEBUG_LOG.throwing("IntegerOrderingMatchingRule",
          "normalizeAttributeValue", e);
      final LocalizableMessage message =
          WARN_ATTR_SYNTAX_ILLEGAL_INTEGER.get(value.toString());
      final LocalizableMessage message = WARN_ATTR_SYNTAX_ILLEGAL_INTEGER
          .get(value.toString());
      throw DecodeException.error(message);
    }
  }