Subversion Repository Public Repository

litesoft

Diff Revisions 151 vs 811 for /trunk/Java/GWT/Client/src/org/litesoft/GWT/client/nonpublic/GwtClientDelayedTimedRunnableRunner.java

Diff revisions: vs.
  @@ -3,7 +3,7 @@
3 3
4 4 import org.litesoft.GWT.client.*;
5 5 import org.litesoft.core.delayed.nonpublic.*;
6 - import org.litesoft.core.util.*;
6 + import org.litesoft.core.typeutils.*;
7 7
8 8 import com.google.gwt.user.client.*;
9 9
  @@ -23,7 +23,8 @@
23 23 int zMsDelay = (int) (pWhenTimeInMilliSecs - pNowInMilliSecs);
24 24 if ( zMsDelay <= 0 )
25 25 {
26 - throw new IllegalArgumentException( "Delay is not greater than 0 (" + zMsDelay + "=" + pWhenTimeInMilliSecs + "-" + pNowInMilliSecs + ") with: " + UtilsCommon.justClassNameOf( mTimedRunnable ) );
26 + throw new IllegalArgumentException( "Delay is not greater than 0 (" + zMsDelay + "=" + pWhenTimeInMilliSecs + "-" + pNowInMilliSecs + ") with: " + Objects
27 + .justClassNameOf( mTimedRunnable ) );
27 28 }
28 29 mTimer.schedule( zMsDelay );
29 30 }