From 4aa1cf5e26d49ab1273d6affc58a5ac70b870ec4 Mon Sep 17 00:00:00 2001
From: Matthew Swift <matthew.swift@forgerock.com>
Date: Fri, 29 Mar 2013 14:55:14 +0000
Subject: [PATCH] Very minor code cleanup to requests and responses package:

---
 opendj3/opendj-ldap-sdk/src/main/java/org/forgerock/opendj/ldap/requests/UnbindRequestImpl.java |   15 ---------------
 1 files changed, 0 insertions(+), 15 deletions(-)

diff --git a/opendj3/opendj-ldap-sdk/src/main/java/org/forgerock/opendj/ldap/requests/UnbindRequestImpl.java b/opendj3/opendj-ldap-sdk/src/main/java/org/forgerock/opendj/ldap/requests/UnbindRequestImpl.java
index 10dbde7..92efdb6 100644
--- a/opendj3/opendj-ldap-sdk/src/main/java/org/forgerock/opendj/ldap/requests/UnbindRequestImpl.java
+++ b/opendj3/opendj-ldap-sdk/src/main/java/org/forgerock/opendj/ldap/requests/UnbindRequestImpl.java
@@ -32,29 +32,14 @@
  */
 final class UnbindRequestImpl extends AbstractRequestImpl<UnbindRequest> implements UnbindRequest {
 
-    /**
-     * Creates a new unbind request.
-     */
     UnbindRequestImpl() {
         // Do nothing.
     }
 
-    /**
-     * Creates a new unbind request that is an exact copy of the provided
-     * request.
-     *
-     * @param unbindRequest
-     *            The unbind request to be copied.
-     * @throws NullPointerException
-     *             If {@code unbindRequest} was {@code null} .
-     */
     UnbindRequestImpl(final UnbindRequest unbindRequest) {
         super(unbindRequest);
     }
 
-    /**
-     * {@inheritDoc}
-     */
     @Override
     public String toString() {
         final StringBuilder builder = new StringBuilder();

--
Gitblit v1.10.0