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/UserPasswordSyntax.java | 14 --------------
1 files changed, 0 insertions(+), 14 deletions(-)
diff --git a/opends/src/server/org/opends/server/schema/UserPasswordSyntax.java b/opends/src/server/org/opends/server/schema/UserPasswordSyntax.java
index dc79b8f..83c7427 100644
--- a/opends/src/server/org/opends/server/schema/UserPasswordSyntax.java
+++ b/opends/src/server/org/opends/server/schema/UserPasswordSyntax.java
@@ -101,7 +101,6 @@
public void initializeSyntax(ConfigEntry configEntry)
throws ConfigException
{
-
defaultEqualityMatchingRule =
DirectoryServer.getEqualityMatchingRule(EMR_USER_PASSWORD_EXACT_OID);
if (defaultEqualityMatchingRule == null)
@@ -121,7 +120,6 @@
*/
public String getSyntaxName()
{
-
return SYNTAX_USER_PASSWORD_NAME;
}
@@ -134,7 +132,6 @@
*/
public String getOID()
{
-
return SYNTAX_USER_PASSWORD_OID;
}
@@ -147,7 +144,6 @@
*/
public String getDescription()
{
-
return SYNTAX_USER_PASSWORD_DESCRIPTION;
}
@@ -163,7 +159,6 @@
*/
public EqualityMatchingRule getEqualityMatchingRule()
{
-
return defaultEqualityMatchingRule;
}
@@ -179,7 +174,6 @@
*/
public OrderingMatchingRule getOrderingMatchingRule()
{
-
// There is no ordering matching rule by default.
return null;
}
@@ -196,7 +190,6 @@
*/
public SubstringMatchingRule getSubstringMatchingRule()
{
-
// There is no substring matching rule by default.
return null;
}
@@ -213,7 +206,6 @@
*/
public ApproximateMatchingRule getApproximateMatchingRule()
{
-
// There is no approximate matching rule by default.
return null;
}
@@ -235,8 +227,6 @@
public boolean valueIsAcceptable(ByteString value,
StringBuilder invalidReason)
{
-
-
// We have to accept any value here because in many cases the value will not
// have been encoded by the time this method is called.
return true;
@@ -259,8 +249,6 @@
public static String[] decodeUserPassword(String userPasswordValue)
throws DirectoryException
{
-
-
// Make sure that there actually is a value to decode.
if ((userPasswordValue == null) || (userPasswordValue.length() == 0))
{
@@ -321,8 +309,6 @@
*/
public static boolean isEncoded(ByteString value)
{
-
-
// If the value is null or empty, then it's not.
byte[] valueBytes;
if ((value == null) || ((valueBytes = value.value()).length == 0))
--
Gitblit v1.10.0