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

Jean-Noel Rouvignac
26.29.2013 4fed0daa395855cd567621b0b38d405c9af254f4
opends/src/server/org/opends/server/replication/common/CSNGenerator.java
@@ -43,13 +43,16 @@
  /**
   * Create a new {@link CSNGenerator}.
   * @param serverID2 id to use when creating {@link CSN}s.
   * @param timestamp time to start with.
   *
   * @param serverId
   *          id to use when creating {@link CSN}s.
   * @param timestamp
   *          time to start with.
   */
  public CSNGenerator(int serverID2, long timestamp)
  public CSNGenerator(int serverId, long timestamp)
  {
    this.lastTime = timestamp;
    this.serverId = serverID2;
    this.serverId = serverId;
    this.seqnum = 0;
  }
@@ -161,6 +164,6 @@
    for (int localServerId : state)
    {
      adjust(state.getCSN(localServerId));
     }
    }
  }
}