mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

Jean-Noël Rouvignac
20.42.2016 61b9eb1be03fc03a9f4bb0013a08ff44a1059503
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.
   *