From 3e3246e42af6979556dec66ec10ad3d3e009217c 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.
---
opendj-sdk/opends/src/server/org/opends/server/schema/OIDSyntax.java | 9 ---------
1 files changed, 0 insertions(+), 9 deletions(-)
diff --git a/opendj-sdk/opends/src/server/org/opends/server/schema/OIDSyntax.java b/opendj-sdk/opends/src/server/org/opends/server/schema/OIDSyntax.java
index f79cc4b..4e69943 100644
--- a/opendj-sdk/opends/src/server/org/opends/server/schema/OIDSyntax.java
+++ b/opendj-sdk/opends/src/server/org/opends/server/schema/OIDSyntax.java
@@ -93,7 +93,6 @@
public void initializeSyntax(ConfigEntry configEntry)
throws ConfigException
{
-
defaultEqualityMatchingRule =
DirectoryServer.getEqualityMatchingRule(EMR_OID_OID);
if (defaultEqualityMatchingRule == null)
@@ -122,7 +121,6 @@
*/
public String getSyntaxName()
{
-
return SYNTAX_OID_NAME;
}
@@ -135,7 +133,6 @@
*/
public String getOID()
{
-
return SYNTAX_OID_OID;
}
@@ -148,7 +145,6 @@
*/
public String getDescription()
{
-
return SYNTAX_OID_DESCRIPTION;
}
@@ -164,7 +160,6 @@
*/
public EqualityMatchingRule getEqualityMatchingRule()
{
-
return defaultEqualityMatchingRule;
}
@@ -180,7 +175,6 @@
*/
public OrderingMatchingRule getOrderingMatchingRule()
{
-
// There is no ordering matching rule by default.
return null;
}
@@ -197,7 +191,6 @@
*/
public SubstringMatchingRule getSubstringMatchingRule()
{
-
return defaultSubstringMatchingRule;
}
@@ -213,7 +206,6 @@
*/
public ApproximateMatchingRule getApproximateMatchingRule()
{
-
// There is no approximate matching rule by default.
return null;
}
@@ -235,7 +227,6 @@
public boolean valueIsAcceptable(ByteString value,
StringBuilder invalidReason)
{
-
String lowerValue = toLowerCase(value.stringValue());
return isValidSchemaElement(lowerValue, 0, lowerValue.length(),
invalidReason);
--
Gitblit v1.10.0