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

matthew_swift
14.21.2009 a415256cc798baf286d618a2c9ddd427c26a518d
sdk/src/com/sun/opends/sdk/tools/ModRate.java
@@ -273,7 +273,7 @@
    private class ModifyWorkerThread extends
        WorkerThread<ResultHandler<Result, Void>>
        WorkerThread<ResultHandler<Result>>
    {
      private ModifyRequest mr;
      private Object[] data;
@@ -288,7 +288,7 @@
      public ResultHandler<Result, Void> getHandler(long startTime)
      public ResultHandler<Result> getHandler(long startTime)
      {
        return new UpdateStatsResultHandler<Result>(startTime);
      }
@@ -297,14 +297,14 @@
      public ResultFuture<?> performOperation(
          AsynchronousConnection connection,
          ResultHandler<Result, Void> handler, DataSource[] dataSources)
          ResultHandler<Result> handler, DataSource[] dataSources)
      {
        if (dataSources != null)
        {
          data = DataSource.generateData(dataSources, data);
        }
        mr = newModifyRequest(data);
        return connection.modify(mr, handler, null);
        return connection.modify(mr, handler);
      }