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

matthew_swift
15.58.2009 47e492a9ccde3af37512cdde9cd13d3c388f4ebe
opendj-sdk/sdk/src/org/opends/sdk/AbstractConnectionFactory.java
@@ -59,8 +59,8 @@
  /**
   * {@inheritDoc}
   */
  public abstract ConnectionFuture<? extends C> getAsynchronousConnection(
      ConnectionResultHandler<? super C> handler);
  public abstract FutureResult<? extends C> getAsynchronousConnection(
      ResultHandler<? super C> handler);
@@ -104,7 +104,7 @@
  protected final C blockingGetAsynchronousConnection()
      throws ErrorResultException
  {
    ConnectionFuture<? extends C> future = getAsynchronousConnection(null);
    FutureResult<? extends C> future = getAsynchronousConnection(null);
    try
    {
      return future.get();