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

matthew_swift
16.13.2009 abc1a19fd4dee9729fd0aed721575a396d249bd4
sdk/src/com/sun/opends/sdk/ldap/AbstractLDAPFutureResultImpl.java
File was renamed from sdk/src/com/sun/opends/sdk/ldap/AbstractResultFutureImpl.java
@@ -41,12 +41,12 @@
/**
 * Abstract result future implementation.
 * Abstract future result implementation.
 *
 * @param <S>
 *          The type of result returned by this future.
 */
abstract class AbstractResultFutureImpl<S extends Result> extends
abstract class AbstractLDAPFutureResultImpl<S extends Result> extends
    AbstractFutureResult<S> implements FutureResult<S>
{
  private final LDAPConnection connection;
@@ -65,7 +65,7 @@
   * @param connection
   *          The client connection.
   */
  AbstractResultFutureImpl(int messageID,
  AbstractLDAPFutureResultImpl(int messageID,
      ResultHandler<? super S> handler, LDAPConnection connection)
  {
    super(handler);
@@ -78,7 +78,8 @@
  /**
   * {@inheritDoc}
   */
  protected final ErrorResultException handleCancelRequest()
  protected final ErrorResultException handleCancelRequest(
      boolean mayInterruptIfRunning)
  {
    connection.abandon(Requests.newAbandonRequest(messageID));
    return null;