Subversion Repository Public Repository

litesoft

Diff Revisions 60 vs 804 for /trunk/Java/GWT/OldClient/src/org/litesoft/GWT/forms/client/components/nonpublic/AbstractFormDialog.java

Diff revisions: vs.
  @@ -7,7 +7,7 @@
7 7 import org.litesoft.GWT.client.widgets.*;
8 8 import org.litesoft.GWT.forms.client.*;
9 9 import org.litesoft.GWT.forms.client.rpc.*;
10 - import org.litesoft.core.util.*;
10 + import org.litesoft.core.typeutils.*;
11 11 import org.litesoft.ui.def.*;
12 12
13 13 import com.google.gwt.user.client.ui.*;
  @@ -27,10 +27,10 @@
27 27 BusFormServicePeerChannel channel )
28 28 {
29 29 super( "Form", Opaqueness.None );
30 - UtilsCommon.assertNotNull( "FormDef", mFormDef = formDef );
31 - UtilsCommon.assertNotNull( "TypeDisplayString", mTypeDisplayString = pTypeDisplayString );
30 + Objects.assertNotNull( "FormDef", mFormDef = formDef );
31 + Objects.assertNotNull( "TypeDisplayString", mTypeDisplayString = pTypeDisplayString );
32 32 mRootKey = pRootKey;
33 - UtilsCommon.assertNotNull( "channel", mChannel = channel );
33 + Objects.assertNotNull( "channel", mChannel = channel );
34 34 initialize( createDialogTitle(), null );
35 35 }
36 36