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/CaseIgnoreSubstringMatchingRuleImpl.java | 15 ++++++++-------
1 files changed, 8 insertions(+), 7 deletions(-)
diff --git a/sdk/src/org/opends/sdk/schema/CaseIgnoreSubstringMatchingRuleImpl.java b/sdk/src/org/opends/sdk/schema/CaseIgnoreSubstringMatchingRuleImpl.java
index d243560..f9ac602 100644
--- a/sdk/src/org/opends/sdk/schema/CaseIgnoreSubstringMatchingRuleImpl.java
+++ b/sdk/src/org/opends/sdk/schema/CaseIgnoreSubstringMatchingRuleImpl.java
@@ -28,7 +28,8 @@
-import static com.sun.opends.sdk.util.StringPrepProfile.*;
+import static com.sun.opends.sdk.util.StringPrepProfile.CASE_FOLD;
+import static com.sun.opends.sdk.util.StringPrepProfile.TRIM;
import org.opends.sdk.ByteSequence;
import org.opends.sdk.ByteString;
@@ -39,14 +40,14 @@
/**
- * This class defines the caseIgnoreSubstringsMatch matching rule
- * defined in X.520 and referenced in RFC 2252.
+ * This class defines the caseIgnoreSubstringsMatch matching rule defined in
+ * X.520 and referenced in RFC 2252.
*/
final class CaseIgnoreSubstringMatchingRuleImpl extends
AbstractSubstringMatchingRuleImpl
{
- public ByteString normalizeAttributeValue(Schema schema,
- ByteSequence value)
+ public ByteString normalizeAttributeValue(final Schema schema,
+ final ByteSequence value)
{
return normalize(TRIM, value);
}
@@ -54,7 +55,7 @@
@Override
- ByteString normalizeSubString(Schema schema, ByteSequence value)
+ ByteString normalizeSubString(final Schema schema, final ByteSequence value)
throws DecodeException
{
return normalize(false, value);
@@ -62,7 +63,7 @@
- private ByteString normalize(boolean trim, ByteSequence value)
+ private ByteString normalize(final boolean trim, final ByteSequence value)
{
final StringBuilder buffer = new StringBuilder();
--
Gitblit v1.10.0