Subversion Repository Public Repository

litesoft

Diff Revisions 49 vs 821 for /trunk/Java/GWT/Client/src/org/litesoft/GWT/client/widgets/ResizeHelper.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.GWT.client.widgets;
3 3
4 - import org.litesoft.GWT.client.*;
4 + import org.litesoft.core.typeutils.*;
5 5
6 6 import com.google.gwt.user.client.*;
7 7
  @@ -32,7 +32,7 @@
32 32
33 33 public void setMsDelay( int pMsDelay )
34 34 {
35 - mMsDelay = UtilsGwt.assertNotNegative( "pMsDelay", pMsDelay );
35 + mMsDelay = Integers.assertNonNegative( "pMsDelay", pMsDelay );
36 36 }
37 37
38 38 public void onResized()