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

neil_a_wilson
01.18.2007 3e3246e42af6979556dec66ec10ad3d3e009217c
opendj-sdk/opends/src/server/org/opends/server/loggers/TimeLimitRotationPolicy.java
@@ -45,7 +45,6 @@
   */
  public TimeLimitRotationPolicy(long time)
  {
    timeInterval = time;
    lastModifiedTime = TimeThread.getTime();
  }
@@ -59,7 +58,6 @@
   */
  public boolean rotateFile()
  {
    long currTime = TimeThread.getTime();
    if (currTime - lastModifiedTime > timeInterval)
    {