Subversion Repository Public Repository

litesoft

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

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