Subversion Repository Public Repository

litesoft

Diff Revisions 820 vs 821 for /trunk/Java/core/Anywhere/src/org/litesoft/bo/views/AbstractCommonSupport.java

Diff revisions: vs.
  @@ -36,13 +36,13 @@
36 36
37 37 protected static TextLines parseTextLines( String pTextLines )
38 38 {
39 - return Strings.isNullOrEmpty( pTextLines ) ? null : new TextLines( UtilsCommon.splitLines( pTextLines ) );
39 + return Strings.isNullOrEmpty( pTextLines ) ? null : new TextLines( Strings.splitLines( pTextLines ) );
40 40 }
41 41
42 42 protected static String cursoryPasswordCheck( String pPassword, String pWhat )
43 43 {
44 44 pPassword = Strings.deNull( pPassword ).trim();
45 - if ( (4 <= pPassword.length()) && UtilsCommon.isNoSpaceAscii( pPassword ) )
45 + if ( (4 <= pPassword.length()) && Strings.isNoSpaceAscii( pPassword ) )
46 46 {
47 47 return null;
48 48 }