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/EqualLengthApproximateMatchingRuleImpl.java |   14 +++++++-------
 1 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/sdk/src/org/opends/sdk/schema/EqualLengthApproximateMatchingRuleImpl.java b/sdk/src/org/opends/sdk/schema/EqualLengthApproximateMatchingRuleImpl.java
index f72ee01..f071f70 100644
--- a/sdk/src/org/opends/sdk/schema/EqualLengthApproximateMatchingRuleImpl.java
+++ b/sdk/src/org/opends/sdk/schema/EqualLengthApproximateMatchingRuleImpl.java
@@ -33,20 +33,20 @@
 
 
 /**
- * This class implements an extremely simple approximate matching rule
- * that will consider two values approximately equal only if they have
- * the same length. It is intended purely for testing purposes.
+ * This class implements an extremely simple approximate matching rule that will
+ * consider two values approximately equal only if they have the same length. It
+ * is intended purely for testing purposes.
  */
 final class EqualLengthApproximateMatchingRuleImpl extends
     AbstractMatchingRuleImpl
 {
   @Override
-  public Assertion getAssertion(Schema schema, final ByteSequence value)
+  public Assertion getAssertion(final Schema schema, final ByteSequence value)
       throws DecodeException
   {
     return new Assertion()
     {
-      public ConditionResult matches(ByteSequence attributeValue)
+      public ConditionResult matches(final ByteSequence attributeValue)
       {
         return attributeValue.length() == value.length() ? ConditionResult.TRUE
             : ConditionResult.FALSE;
@@ -59,8 +59,8 @@
   /**
    * {@inheritDoc}
    */
-  public ByteString normalizeAttributeValue(Schema schema,
-      ByteSequence value)
+  public ByteString normalizeAttributeValue(final Schema schema,
+      final ByteSequence value)
   {
     return value.toByteString();
   }

--
Gitblit v1.10.0