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

Matthew Swift
27.14.2011 0b99e26e3e75fe58045645706cd3cc8995fda728
opendj3/opendj-ldap-toolkit/src/main/java/com/forgerock/opendj/ldap/tools/ModRate.java
@@ -53,7 +53,7 @@
{
  private static final class ModifyPerformanceRunner extends PerformanceRunner
  {
    private final class ModifyWorkerThread extends ConnectionWorker
    private final class ModifyWorkerThread extends WorkerThread
    {
      private ModifyRequest mr;
      private Object[] data;
@@ -78,8 +78,8 @@
          data = DataSource.generateData(dataSources, data);
        }
        mr = newModifyRequest(data);
        return connection.modify(mr, new UpdateStatsResultHandler<Result>(
            startTime, connection, this));
        return connection.modify(mr,
            new UpdateStatsResultHandler<Result>(startTime));
      }
@@ -136,7 +136,7 @@
    @Override
    ConnectionWorker newConnectionWorker(
    WorkerThread newWorkerThread(
        final AsynchronousConnection connection,
        final ConnectionFactory connectionFactory)
    {