From 61b9eb1be03fc03a9f4bb0013a08ff44a1059503 Mon Sep 17 00:00:00 2001
From: Jean-Noël Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Wed, 20 Apr 2016 14:25:46 +0000
Subject: [PATCH] opendj-server-legacy: added @Override + Autorefactor'ed comments
---
opendj-server-legacy/src/main/java/org/opends/server/protocols/ldap/DeleteResponseProtocolOp.java | 15 ---------------
1 files changed, 0 insertions(+), 15 deletions(-)
diff --git a/opendj-server-legacy/src/main/java/org/opends/server/protocols/ldap/DeleteResponseProtocolOp.java b/opendj-server-legacy/src/main/java/org/opends/server/protocols/ldap/DeleteResponseProtocolOp.java
index b044dd0..1ed4e9f 100644
--- a/opendj-server-legacy/src/main/java/org/opends/server/protocols/ldap/DeleteResponseProtocolOp.java
+++ b/opendj-server-legacy/src/main/java/org/opends/server/protocols/ldap/DeleteResponseProtocolOp.java
@@ -38,7 +38,6 @@
{
private static final LocalizedLogger logger = LocalizedLogger.getLoggerForThisClass();
-
/** The matched DN for this response. */
private DN matchedDN;
/** The result code for this response. */
@@ -48,8 +47,6 @@
/** The error message for this response. */
private LocalizableMessage errorMessage;
-
-
/**
* Creates a new delete response protocol op with the provided result code.
*
@@ -60,8 +57,6 @@
this.resultCode = resultCode;
}
-
-
/**
* Creates a new delete response protocol op with the provided result code and
* error message.
@@ -75,8 +70,6 @@
this.errorMessage = errorMessage;
}
-
-
/**
* Creates a new delete response protocol op with the provided information.
*
@@ -94,8 +87,6 @@
this.referralURLs = referralURLs;
}
-
-
/**
* Retrieves the result code for this response.
*
@@ -106,8 +97,6 @@
return resultCode;
}
-
-
/**
* Retrieves the error message for this response.
*
@@ -119,8 +108,6 @@
return errorMessage;
}
-
-
/**
* Retrieves the matched DN for this response.
*
@@ -132,8 +119,6 @@
return matchedDN;
}
-
-
/**
* Retrieves the set of referral URLs for this response.
*
--
Gitblit v1.10.0