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

Jean-Noel Rouvignac
30.42.2013 4290bf7c48e9d681ead7484abe54fea53e08c1e6
opends/src/server/org/opends/server/replication/common/CSNGenerator.java
@@ -109,23 +109,6 @@
  }
  /**
   * Generate an array of new {@link CSN}s.
   *
   * @param number
   *          the total number of {@link CSN}s to generate
   * @return the array of generated {@link CSN}s
   */
  public CSN[] newCSNs(int number)
  {
    final CSN[] csns = new CSN[number];
    for (int i = 0; i < number; i++)
    {
      csns[i] = newCSN();
    }
    return csns;
  }
  /**
   * Adjust the lastTime of this {@link CSNGenerator} with a {@link CSN} that we
   * have received from another server.
   * <p>