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/DirectoryStringSyntax.java | 18 ------------------
1 files changed, 0 insertions(+), 18 deletions(-)
diff --git a/opends/src/server/org/opends/server/schema/DirectoryStringSyntax.java b/opends/src/server/org/opends/server/schema/DirectoryStringSyntax.java
index 1a0f60b..65adb13 100644
--- a/opends/src/server/org/opends/server/schema/DirectoryStringSyntax.java
+++ b/opends/src/server/org/opends/server/schema/DirectoryStringSyntax.java
@@ -144,8 +144,6 @@
public void initializeSyntax(ConfigEntry configEntry)
throws ConfigException
{
-
-
defaultApproximateMatchingRule =
DirectoryServer.getApproximateMatchingRule(AMR_DOUBLE_METAPHONE_OID);
if (defaultApproximateMatchingRule == null)
@@ -234,7 +232,6 @@
*/
public void finalizeSyntax()
{
-
DirectoryServer.deregisterConfigurableComponent(this);
}
@@ -247,7 +244,6 @@
*/
public String getSyntaxName()
{
-
return SYNTAX_DIRECTORY_STRING_NAME;
}
@@ -260,7 +256,6 @@
*/
public String getOID()
{
-
return SYNTAX_DIRECTORY_STRING_OID;
}
@@ -273,7 +268,6 @@
*/
public String getDescription()
{
-
return SYNTAX_DIRECTORY_STRING_DESCRIPTION;
}
@@ -289,7 +283,6 @@
*/
public EqualityMatchingRule getEqualityMatchingRule()
{
-
return defaultEqualityMatchingRule;
}
@@ -305,7 +298,6 @@
*/
public OrderingMatchingRule getOrderingMatchingRule()
{
-
return defaultOrderingMatchingRule;
}
@@ -321,7 +313,6 @@
*/
public SubstringMatchingRule getSubstringMatchingRule()
{
-
return defaultSubstringMatchingRule;
}
@@ -337,7 +328,6 @@
*/
public ApproximateMatchingRule getApproximateMatchingRule()
{
-
return defaultApproximateMatchingRule;
}
@@ -358,7 +348,6 @@
public boolean valueIsAcceptable(ByteString value,
StringBuilder invalidReason)
{
-
if (allowZeroLengthValues || (value.value().length > 0))
{
return true;
@@ -385,7 +374,6 @@
*/
public boolean allowZeroLengthValues()
{
-
return allowZeroLengthValues;
}
@@ -400,7 +388,6 @@
*/
public DN getConfigurableComponentEntryDN()
{
-
return configEntryDN;
}
@@ -415,7 +402,6 @@
*/
public List<ConfigAttribute> getConfigurationAttributes()
{
-
LinkedList<ConfigAttribute> configAttrs = new LinkedList<ConfigAttribute>();
int msgID = MSGID_ATTR_SYNTAX_DIRECTORYSTRING_DESCRIPTION_ALLOW_ZEROLENGTH;
@@ -445,8 +431,6 @@
public boolean hasAcceptableConfiguration(ConfigEntry configEntry,
List<String> unacceptableReasons)
{
-
-
boolean configValid = true;
@@ -500,8 +484,6 @@
public ConfigChangeResult applyNewConfiguration(ConfigEntry configEntry,
boolean detailedResults)
{
-
-
ResultCode resultCode = ResultCode.SUCCESS;
boolean adminActionRequired = false;
ArrayList<String> messages = new ArrayList<String>();
--
Gitblit v1.10.0