Subversion Repository Public Repository

litesoft

Diff Revisions 803 vs 804 for /trunk/Java/GWT/OldClient/src/org/litesoft/GWT/forms/client/nonpublic/RelSubFormTypeHelperImpl.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.forms.client.nonpublic;
3 3
4 - import org.litesoft.core.util.*;
4 + import org.litesoft.core.typeutils.*;
5 5 import org.litesoft.ui.def.nonpublic.*;
6 6 import org.litesoft.ui.def.nonpublic.support.*;
7 7
  @@ -16,9 +16,9 @@
16 16 public RelSubFormTypeHelperImpl( RelSubFormTypeHelperParentable pParent, //
17 17 UiRelSubFormDef pRelSubForm, FormMetaData pFormMetaData )
18 18 {
19 - UtilsCommon.assertNotNull( "Parent", mParent = pParent );
20 - UtilsCommon.assertNotNull( "UiRelSubFormDef", mRelSubForm = pRelSubForm );
21 - UtilsCommon.assertNotNull( "FormMetaData", mFormMetaData = pFormMetaData );
19 + Objects.assertNotNull( "Parent", mParent = pParent );
20 + Objects.assertNotNull( "UiRelSubFormDef", mRelSubForm = pRelSubForm );
21 + Objects.assertNotNull( "FormMetaData", mFormMetaData = pFormMetaData );
22 22 mParent.addChild( this );
23 23 }
24 24