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

gbellato
17.46.2006 46e6061d63562ce021ef8f3b5062d3eba1c2db4e
opends/src/server/org/opends/server/synchronization/common/ChangeNumber.java
@@ -48,11 +48,10 @@
    timeStamp = Long.parseLong(temp, 16);
    temp = str.substring(16, 20);
    seqnum = Integer.parseInt(temp, 16);
    temp = str.substring(20, 24);
    serverId = Short.parseShort(temp, 16);
    temp = str.substring(20, 28);
    seqnum = Integer.parseInt(temp, 16);
  }
  /**
@@ -140,7 +139,7 @@
   */
  public String toString()
  {
    return String.format("%016x%04x%04x", timeStamp, seqnum, serverId);
    return String.format("%016x%04x%08x", timeStamp, serverId, seqnum);
  }
  /**