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/api/MatchingRule.java | 6 ------
1 files changed, 0 insertions(+), 6 deletions(-)
diff --git a/opends/src/server/org/opends/server/api/MatchingRule.java b/opends/src/server/org/opends/server/api/MatchingRule.java
index 098e45c..294c030 100644
--- a/opends/src/server/org/opends/server/api/MatchingRule.java
+++ b/opends/src/server/org/opends/server/api/MatchingRule.java
@@ -97,7 +97,6 @@
*/
public String getNameOrOID()
{
-
String name = getName();
if ((name == null) || (name.length() == 0))
{
@@ -144,7 +143,6 @@
*/
public boolean isObsolete()
{
-
return false;
}
@@ -201,7 +199,6 @@
*/
public int hashCode()
{
-
int hashCode = 0;
String oidString = getOID();
@@ -228,7 +225,6 @@
*/
public boolean equals(Object o)
{
-
if (o == null)
{
return false;
@@ -258,7 +254,6 @@
*/
public String toString()
{
-
StringBuilder buffer = new StringBuilder();
toString(buffer);
return buffer.toString();
@@ -275,7 +270,6 @@
*/
public void toString(StringBuilder buffer)
{
-
buffer.append("( ");
buffer.append(getOID());
buffer.append(" NAME '");
--
Gitblit v1.10.0