Subversion Repository Public Repository

litesoft

Diff Revisions 818 vs 819 for /trunk/Java/core/Anywhere/src/org/litesoft/core/delayed/TimedRunnable.java

Diff revisions: vs.
  @@ -1,7 +1,7 @@
1 1 // This Source Code is in the Public Domain per: http://litesoft.org/License.txt
2 2 package org.litesoft.core.delayed;
3 3
4 - import org.litesoft.core.util.*;
4 + import org.litesoft.core.typeutils.*;
5 5
6 6 public interface TimedRunnable
7 7 {
  @@ -44,7 +44,7 @@
44 44
45 45 public long getOnOrAfter()
46 46 {
47 - return UtilsCommon.now().getTime() + getValue();
47 + return Dates.now().getTime() + getValue();
48 48 }
49 49 }
50 50