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/IntegerEqualityMatchingRuleImpl.java | 17 ++++++++---------
1 files changed, 8 insertions(+), 9 deletions(-)
diff --git a/sdk/src/org/opends/sdk/schema/IntegerEqualityMatchingRuleImpl.java b/sdk/src/org/opends/sdk/schema/IntegerEqualityMatchingRuleImpl.java
index a44868b..4044bb4 100644
--- a/sdk/src/org/opends/sdk/schema/IntegerEqualityMatchingRuleImpl.java
+++ b/sdk/src/org/opends/sdk/schema/IntegerEqualityMatchingRuleImpl.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,14 @@
/**
- * This class defines the integerMatch matching rule defined in X.520
- * and referenced in RFC 2252.
+ * This class defines the integerMatch matching rule defined in X.520 and
+ * referenced in RFC 2252.
*/
-final class IntegerEqualityMatchingRuleImpl extends
- AbstractMatchingRuleImpl
+final class IntegerEqualityMatchingRuleImpl extends AbstractMatchingRuleImpl
{
- public ByteString normalizeAttributeValue(Schema schema,
- ByteSequence value) throws DecodeException
+ public ByteString normalizeAttributeValue(final Schema schema,
+ final ByteSequence value) throws DecodeException
{
try
{
@@ -59,8 +58,8 @@
StaticUtils.DEBUG_LOG.throwing("IntegerEqualityMatchingRule",
"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