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/AuthPasswordSyntax.java | 13 -------------
1 files changed, 0 insertions(+), 13 deletions(-)
diff --git a/opends/src/server/org/opends/server/schema/AuthPasswordSyntax.java b/opends/src/server/org/opends/server/schema/AuthPasswordSyntax.java
index 6b693cb..c510d61 100644
--- a/opends/src/server/org/opends/server/schema/AuthPasswordSyntax.java
+++ b/opends/src/server/org/opends/server/schema/AuthPasswordSyntax.java
@@ -93,7 +93,6 @@
public void initializeSyntax(ConfigEntry configEntry)
throws ConfigException
{
-
defaultEqualityMatchingRule =
DirectoryServer.getEqualityMatchingRule(EMR_AUTH_PASSWORD_EXACT_OID);
if (defaultEqualityMatchingRule == null)
@@ -113,7 +112,6 @@
*/
public String getSyntaxName()
{
-
return SYNTAX_AUTH_PASSWORD_NAME;
}
@@ -126,7 +124,6 @@
*/
public String getOID()
{
-
return SYNTAX_AUTH_PASSWORD_OID;
}
@@ -139,7 +136,6 @@
*/
public String getDescription()
{
-
return SYNTAX_AUTH_PASSWORD_DESCRIPTION;
}
@@ -155,7 +151,6 @@
*/
public EqualityMatchingRule getEqualityMatchingRule()
{
-
return defaultEqualityMatchingRule;
}
@@ -171,7 +166,6 @@
*/
public OrderingMatchingRule getOrderingMatchingRule()
{
-
// There is no ordering matching rule by default.
return null;
}
@@ -188,7 +182,6 @@
*/
public SubstringMatchingRule getSubstringMatchingRule()
{
-
// There is no substring matching rule by default.
return null;
}
@@ -205,7 +198,6 @@
*/
public ApproximateMatchingRule getApproximateMatchingRule()
{
-
// There is no approximate matching rule by default.
return null;
}
@@ -227,7 +219,6 @@
public boolean valueIsAcceptable(ByteString value,
StringBuilder invalidReason)
{
-
try
{
decodeAuthPassword(value.stringValue());
@@ -257,8 +248,6 @@
public static StringBuilder[] decodeAuthPassword(String authPasswordValue)
throws DirectoryException
{
-
-
// Create placeholders for the values to return.
StringBuilder scheme = new StringBuilder();
StringBuilder authInfo = new StringBuilder();
@@ -510,8 +499,6 @@
*/
public static boolean isEncoded(ByteString value)
{
-
-
// FIXME -- Make this more efficient, and don't use exceptions for flow
// control.
--
Gitblit v1.10.0