Subversion Repository Public Repository

litesoft

Diff Revisions 820 vs 821 for /trunk/Java/GWT/OldClient/src/org/litesoft/GWT/forms/client/nonpublic/RelSubFormRowInstanceComponentHandlerImpl.java

Diff revisions: vs.
  @@ -2,7 +2,6 @@
2 2 package org.litesoft.GWT.forms.client.nonpublic;
3 3
4 4 import org.litesoft.core.typeutils.*;
5 - import org.litesoft.core.util.*;
6 5 import org.litesoft.ui.def.nonpublic.*;
7 6 import org.litesoft.ui.def.nonpublic.support.*;
8 7
  @@ -22,7 +21,7 @@
22 21 String pRowObjectKey, int pRowIndex )
23 22 {
24 23 Objects.assertNotNull( "Parent", mParent = pParent );
25 - mRowObjectKey = UtilsCommon.assertNotNullNotEmpty( "RowObjectKey", pRowObjectKey );
24 + mRowObjectKey = Strings.assertNotNullNotEmpty( "RowObjectKey", pRowObjectKey );
26 25 mRowIndex = pRowIndex;
27 26 mFormDataRowKey = new FormDataRowKey( getFormUniqueID(), mRowObjectKey );
28 27 }