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

matthew_swift
16.13.2009 be2bcd6fb45552eac461bc337aed06238cacbeb9
opendj-sdk/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;
  }