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

matthew_swift
16.13.2009 abc1a19fd4dee9729fd0aed721575a396d249bd4
sdk/src/com/sun/opends/sdk/util/FutureResultTransformer.java
@@ -55,7 +55,7 @@
  private final ResultHandler<? super N> handler;
  private volatile FutureResult<M> future = null;
  private volatile FutureResult<? extends M> future = null;
  // These do not need to be volatile since the future acts as a memory
  // barrier.
@@ -194,7 +194,7 @@
   * @param future
   *          The inner future.
   */
  public final void setFutureResult(FutureResult<M> future)
  public final void setFutureResult(FutureResult<? extends M> future)
  {
    this.future = future;
  }