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

matthew_swift
14.21.2009 a415256cc798baf286d618a2c9ddd427c26a518d
sdk/src/org/opends/sdk/ldap/LDAPConnectionFactory.java
@@ -33,6 +33,7 @@
import com.sun.opends.sdk.ldap.LDAPConnectionFactoryImpl;
/**
 * LDAP connection factory implementation.
 */
@@ -113,11 +114,10 @@
  public <P> ConnectionFuture<AsynchronousConnection> getAsynchronousConnection(
      ConnectionResultHandler<? super AsynchronousConnection, P> handler,
      P p)
  public ConnectionFuture<AsynchronousConnection> getAsynchronousConnection(
      ConnectionResultHandler<? super AsynchronousConnection> handler)
  {
    return impl.getAsynchronousConnection(handler, p);
    return impl.getAsynchronousConnection(handler);
  }