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/UserPasswordExactEqualityMatchingRuleImpl.java |   17 ++++++++---------
 1 files changed, 8 insertions(+), 9 deletions(-)

diff --git a/sdk/src/org/opends/sdk/schema/UserPasswordExactEqualityMatchingRuleImpl.java b/sdk/src/org/opends/sdk/schema/UserPasswordExactEqualityMatchingRuleImpl.java
index f92decf..fb00329 100644
--- a/sdk/src/org/opends/sdk/schema/UserPasswordExactEqualityMatchingRuleImpl.java
+++ b/sdk/src/org/opends/sdk/schema/UserPasswordExactEqualityMatchingRuleImpl.java
@@ -37,15 +37,15 @@
 
 
 /**
- * This class implements the userPasswordExactMatch matching rule, which
- * will simply compare encoded hashed password values to see if they are
- * exactly equal to each other.
+ * This class implements the userPasswordExactMatch matching rule, which will
+ * simply compare encoded hashed password values to see if they are exactly
+ * equal to each other.
  */
 final class UserPasswordExactEqualityMatchingRuleImpl extends
     AbstractMatchingRuleImpl
 {
-  public ByteString normalizeAttributeValue(Schema schema,
-      ByteSequence value) throws DecodeException
+  public ByteString normalizeAttributeValue(final Schema schema,
+      final ByteSequence value) throws DecodeException
   {
     // The normalized form of this matching rule is exactly equal to the
     // non-normalized form, except that the scheme needs to be converted
@@ -63,10 +63,9 @@
           break;
         }
       }
-      final ByteSequence seq1 =
-          value.subSequence(0, closingBracePos + 1);
-      final ByteSequence seq2 =
-          value.subSequence(closingBracePos + 1, value.length());
+      final ByteSequence seq1 = value.subSequence(0, closingBracePos + 1);
+      final ByteSequence seq2 = value.subSequence(closingBracePos + 1, value
+          .length());
       StaticUtils.toLowerCase(seq1, builder);
       builder.append(seq2);
       return ByteString.valueOf(builder.toString());

--
Gitblit v1.10.0