Subversion Repository Public Repository

litesoft

Diff Revisions 459 vs 801 for /trunk/GWT_Sandbox/InitFrom/src/org/litesoft/initfrom/server/pos/User.java

Diff revisions: vs.
  @@ -3,6 +3,7 @@
3 3 import java.util.*;
4 4
5 5 import org.litesoft.core.simpletypes.*;
6 + import org.litesoft.core.typeutils.*;
6 7 import org.litesoft.core.util.*;
7 8 import org.litesoft.initfrom.client.boviews.*;
8 9 import org.litesoft.initfrom.server.*;
  @@ -225,7 +226,7 @@
225 226 {
226 227 if ( pPassword.length() < 8 )
227 228 {
228 - String zCurrentPassword = Utils.noEmpty( getPassword() );
229 + String zCurrentPassword = Strings.noEmpty( getPassword() );
229 230 if ( (zCurrentPassword == null) || (pPassword.length() < zCurrentPassword.length()) )
230 231 {
231 232 return "Unacceptable New Password - Too Short";