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/AbstractBindRequest.java | 23 +++--------------------
1 files changed, 3 insertions(+), 20 deletions(-)
diff --git a/opendj3/opendj-ldap-sdk/src/main/java/org/forgerock/opendj/ldap/requests/AbstractBindRequest.java b/opendj3/opendj-ldap-sdk/src/main/java/org/forgerock/opendj/ldap/requests/AbstractBindRequest.java
index e2f5c14..e310a3d 100644
--- a/opendj3/opendj-ldap-sdk/src/main/java/org/forgerock/opendj/ldap/requests/AbstractBindRequest.java
+++ b/opendj3/opendj-ldap-sdk/src/main/java/org/forgerock/opendj/ldap/requests/AbstractBindRequest.java
@@ -36,34 +36,17 @@
abstract class AbstractBindRequest<R extends BindRequest> extends AbstractRequestImpl<R> implements
BindRequest {
- /**
- * Creates a new abstract bind request.
- */
- protected AbstractBindRequest() {
+ AbstractBindRequest() {
// Nothing to do.
}
- /**
- * Creates a new abstract bind request that is an exact copy of the provided
- * request.
- *
- * @param bindRequest
- * The bind request to be copied.
- * @throws NullPointerException
- * If {@code bindRequest} was {@code null} .
- */
- protected AbstractBindRequest(BindRequest bindRequest) {
+ AbstractBindRequest(final BindRequest bindRequest) {
super(bindRequest);
}
- /**
- * {@inheritDoc}
- */
+ @Override
public abstract String getName();
- /**
- * {@inheritDoc}
- */
@Override
@SuppressWarnings("unchecked")
final R getThis() {
--
Gitblit v1.10.0