Subversion Repository Public Repository

litesoft

Diff Revisions 496 vs 801 for /trunk/Java/DATT/src/org/litesoft/datt/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.datt.client.support.*;
8 9 import org.litesoft.datt.server.*;
  @@ -226,7 +227,7 @@
226 227 {
227 228 if ( pPassword.length() < 8 )
228 229 {
229 - String zCurrentPassword = Utils.noEmpty( getPassword() );
230 + String zCurrentPassword = Strings.noEmpty( getPassword() );
230 231 if ( (zCurrentPassword == null) || (pPassword.length() < zCurrentPassword.length()) )
231 232 {
232 233 return "Unacceptable New Password - Too Short";