Subversion Repository Public Repository

litesoft

Diff Revisions 487 vs 801 for /trunk/Java/GWT/Client/src/org/litesoft/GWT/client/view/ChangePassword.java

Diff revisions: vs.
  @@ -7,6 +7,7 @@
7 7 import org.litesoft.GWT.forms.client.components.*;
8 8 import org.litesoft.bo.views.*;
9 9 import org.litesoft.core.*;
10 + import org.litesoft.core.typeutils.*;
10 11 import org.litesoft.core.util.*;
11 12 import org.litesoft.security.*;
12 13 import org.litesoft.uispecification.*;
  @@ -221,7 +222,7 @@
221 222 private String getCurrentValue()
222 223 {
223 224 Object zValue = mComponent.getCurrentValue();
224 - return (zValue != null) ? UtilsCommon.noEmpty( zValue.toString() ) : null;
225 + return (zValue != null) ? Strings.noEmpty( zValue.toString() ) : null;
225 226 }
226 227
227 228 @Override