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

Matthew Swift
29.55.2013 4aa1cf5e26d49ab1273d6affc58a5ac70b870ec4
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() {