Subversion Repository Public Repository

litesoft

Diff Revisions 496 vs 801 for /trunk/GWT_Sandbox/Prioritizer/src/org/litesoft/prioritizer/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.exceptions.*;
8 9 import org.litesoft.orsup.selection.*;
  @@ -228,7 +229,7 @@
228 229 {
229 230 if ( pPassword.length() < 8 )
230 231 {
231 - String zCurrentPassword = Utils.noEmpty( getPassword() );
232 + String zCurrentPassword = Strings.noEmpty( getPassword() );
232 233 if ( (zCurrentPassword == null) || (pPassword.length() < zCurrentPassword.length()) )
233 234 {
234 235 return "Unacceptable New Password - Too Short";