Subversion Repository Public Repository

litesoft

Diff Revisions 151 vs 804 for /trunk/Java/GWT/Client/src/org/litesoft/GWT/client/widgets/nonpublic/TwoDimensionalChildHelper.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.nonpublic;
3 3
4 - import org.litesoft.core.util.*;
4 + import org.litesoft.core.typeutils.*;
5 5
6 6 import com.google.gwt.user.client.*;
7 7 import com.google.gwt.user.client.ui.*;
  @@ -15,7 +15,7 @@
15 15
16 16 public TwoDimensionalChildHelper( Element pTBody, int pColsPerRow )
17 17 {
18 - UtilsCommon.assertNotNull( "TBODY", mTBody = pTBody );
18 + Objects.assertNotNull( "TBODY", mTBody = pTBody );
19 19 if ( (mColsPerRow = pColsPerRow) < 1 )
20 20 {
21 21 throw new IllegalArgumentException( "Must have at least 1 column, but was given: " + pColsPerRow );