Subversion Repository Public Repository

litesoft

Diff Revisions 60 vs 801 for /trunk/Java/GWT/OldClient/src/org/litesoft/GWT/forms/client/nonpublic/AbstractFormAttributeAdapter.java

Diff revisions: vs.
  @@ -5,7 +5,7 @@
5 5
6 6 import org.litesoft.GWT.forms.client.components.*;
7 7 import org.litesoft.GWT.client.*;
8 - import org.litesoft.core.util.*;
8 + import org.litesoft.core.typeutils.*;
9 9 import org.litesoft.ui.def.nonpublic.support.*;
10 10
11 11 import com.google.gwt.user.client.ui.*;
  @@ -232,7 +232,7 @@
232 232 protected String transformErrorText( String pErrorText, Serializable pSendableCurrentValue,
233 233 Object pComponentCurrentValue )
234 234 {
235 - pErrorText = UtilsCommon.noEmpty( pErrorText );
235 + pErrorText = Strings.noEmpty( pErrorText );
236 236 if ( (pErrorText == null) && (pComponentCurrentValue instanceof FormTextInputErrorValue) )
237 237 {
238 238 return ((FormTextInputErrorValue)pComponentCurrentValue).getErrorMessage();