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/TelephoneNumberSyntax.java | 19 -------------------
1 files changed, 0 insertions(+), 19 deletions(-)
diff --git a/opends/src/server/org/opends/server/schema/TelephoneNumberSyntax.java b/opends/src/server/org/opends/server/schema/TelephoneNumberSyntax.java
index bc250d3..9ec1ba5 100644
--- a/opends/src/server/org/opends/server/schema/TelephoneNumberSyntax.java
+++ b/opends/src/server/org/opends/server/schema/TelephoneNumberSyntax.java
@@ -118,7 +118,6 @@
public void initializeSyntax(ConfigEntry configEntry)
throws ConfigException
{
-
defaultEqualityMatchingRule =
DirectoryServer.getEqualityMatchingRule(EMR_TELEPHONE_OID);
if (defaultEqualityMatchingRule == null)
@@ -185,7 +184,6 @@
*/
public void finalizeSyntax()
{
-
DirectoryServer.deregisterConfigurableComponent(this);
}
@@ -198,7 +196,6 @@
*/
public String getSyntaxName()
{
-
return SYNTAX_TELEPHONE_NAME;
}
@@ -211,7 +208,6 @@
*/
public String getOID()
{
-
return SYNTAX_TELEPHONE_OID;
}
@@ -224,7 +220,6 @@
*/
public String getDescription()
{
-
return SYNTAX_TELEPHONE_DESCRIPTION;
}
@@ -240,7 +235,6 @@
*/
public EqualityMatchingRule getEqualityMatchingRule()
{
-
return defaultEqualityMatchingRule;
}
@@ -256,7 +250,6 @@
*/
public OrderingMatchingRule getOrderingMatchingRule()
{
-
// There is no ordering matching rule by default.
return null;
}
@@ -273,7 +266,6 @@
*/
public SubstringMatchingRule getSubstringMatchingRule()
{
-
return defaultSubstringMatchingRule;
}
@@ -289,7 +281,6 @@
*/
public ApproximateMatchingRule getApproximateMatchingRule()
{
-
// There is no approximate matching rule by default.
return null;
}
@@ -311,8 +302,6 @@
public boolean valueIsAcceptable(ByteString value,
StringBuilder invalidReason)
{
-
-
// No matter what, the value can't be empty or null.
String valueStr;
if ((value == null) ||
@@ -403,7 +392,6 @@
*/
private boolean isSeparator(char c)
{
-
switch (c)
{
case ' ':
@@ -425,7 +413,6 @@
*/
public DN getConfigurableComponentEntryDN()
{
-
return configEntryDN;
}
@@ -440,8 +427,6 @@
*/
public List<ConfigAttribute> getConfigurationAttributes()
{
-
-
LinkedList<ConfigAttribute> attrList = new LinkedList<ConfigAttribute>();
int msgID = MSGID_ATTR_SYNTAX_TELEPHONE_DESCRIPTION_STRICT_MODE;
@@ -471,8 +456,6 @@
public boolean hasAcceptableConfiguration(ConfigEntry configEntry,
List<String> unacceptableReasons)
{
-
-
boolean configIsAcceptable = true;
@@ -529,8 +512,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