From a49dee3f75d6e2548e9114d9495655dd56f06973 Mon Sep 17 00:00:00 2001
From: neil_a_wilson <neil_a_wilson@localhost>
Date: Thu, 01 Mar 2007 05:18:42 +0000
Subject: [PATCH] Remove blank lines at the beginning of methods left after eliminating the debugEnter and debugConstructor calls.
---
opends/src/server/org/opends/server/schema/NameAndOptionalUIDSyntax.java | 9 ---------
1 files changed, 0 insertions(+), 9 deletions(-)
diff --git a/opends/src/server/org/opends/server/schema/NameAndOptionalUIDSyntax.java b/opends/src/server/org/opends/server/schema/NameAndOptionalUIDSyntax.java
index 78a4beb..32a80c5 100644
--- a/opends/src/server/org/opends/server/schema/NameAndOptionalUIDSyntax.java
+++ b/opends/src/server/org/opends/server/schema/NameAndOptionalUIDSyntax.java
@@ -98,7 +98,6 @@
public void initializeSyntax(ConfigEntry configEntry)
throws ConfigException
{
-
defaultEqualityMatchingRule =
DirectoryServer.getEqualityMatchingRule(EMR_UNIQUE_MEMBER_OID);
if (defaultEqualityMatchingRule == null)
@@ -127,7 +126,6 @@
*/
public String getSyntaxName()
{
-
return SYNTAX_NAME_AND_OPTIONAL_UID_NAME;
}
@@ -140,7 +138,6 @@
*/
public String getOID()
{
-
return SYNTAX_NAME_AND_OPTIONAL_UID_OID;
}
@@ -153,7 +150,6 @@
*/
public String getDescription()
{
-
return SYNTAX_NAME_AND_OPTIONAL_UID_DESCRIPTION;
}
@@ -169,7 +165,6 @@
*/
public EqualityMatchingRule getEqualityMatchingRule()
{
-
return defaultEqualityMatchingRule;
}
@@ -185,7 +180,6 @@
*/
public OrderingMatchingRule getOrderingMatchingRule()
{
-
// There is no ordering matching rule by default.
return null;
}
@@ -202,7 +196,6 @@
*/
public SubstringMatchingRule getSubstringMatchingRule()
{
-
return defaultSubstringMatchingRule;
}
@@ -218,7 +211,6 @@
*/
public ApproximateMatchingRule getApproximateMatchingRule()
{
-
// There is no approximate matching rule by default.
return null;
}
@@ -240,7 +232,6 @@
public boolean valueIsAcceptable(ByteString value,
StringBuilder invalidReason)
{
-
String valueString = value.stringValue().trim();
int valueLength = valueString.length();
--
Gitblit v1.10.0