From f2160f4bd1c8ac67e5a86a6710d431e8932877f9 Mon Sep 17 00:00:00 2001
From: matthew_swift <matthew_swift@localhost>
Date: Fri, 28 May 2010 11:47:51 +0000
Subject: [PATCH] Synchronize SDK on java.net with internal repository.
---
sdk/src/org/opends/sdk/schema/IntegerOrderingMatchingRuleImpl.java | 14 +++++++-------
1 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/sdk/src/org/opends/sdk/schema/IntegerOrderingMatchingRuleImpl.java b/sdk/src/org/opends/sdk/schema/IntegerOrderingMatchingRuleImpl.java
index 0b5c441..a8257d3 100644
--- a/sdk/src/org/opends/sdk/schema/IntegerOrderingMatchingRuleImpl.java
+++ b/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);
}
}
--
Gitblit v1.10.0