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

Ludovic Poitou
14.52.2010 72650d4cc41c64136d064967d7fec3726d850fee
sdk/src/org/opends/sdk/SynchronousConnection.java
@@ -39,6 +39,7 @@
import java.util.concurrent.BlockingQueue;
/**
 * A {@code SynchronousConnection} adapts an {@code AsynchronousConnection} into
 * a synchronous {@code Connection}.
@@ -361,15 +362,27 @@
    }
  }
  /**
   * {@inheritDoc}
   */
  public ConnectionEntryReader search(final SearchRequest request,
                            BlockingQueue<Response> entries)
      throws UnsupportedOperationException, IllegalStateException,
      NullPointerException
      BlockingQueue<Response> entries) throws UnsupportedOperationException,
      IllegalStateException, NullPointerException
  {
    return new ConnectionEntryReader(getAsynchronousConnection(),
        request, entries);
    return new ConnectionEntryReader(getAsynchronousConnection(), request,
        entries);
  }
  /**
   * {@inheritDoc}
   */
  public String toString()
  {
    return connection.toString();
  }
}