Subversion Repository Public Repository

litesoft

Diff Revisions 809 vs 810 for /trunk/Java/core/Server/src/org/litesoft/bo/views/server/WhereClauseSupport.java

Diff revisions: vs.
  @@ -8,7 +8,6 @@
8 8 import org.litesoft.orsup.base.*;
9 9 import org.litesoft.orsup.otherattributeaccessors.*;
10 10 import org.litesoft.orsup.selection.*;
11 - import org.litesoft.util.*;
12 11
13 12 public class WhereClauseSupport
14 13 {
  @@ -110,7 +109,7 @@
110 109 String[] zParts = Strings.parseChar( pAttributeValue, '*' );
111 110 if ( zParts.length == 1 )
112 111 {
113 - zParts = Utils.appendString( zParts, "" );
112 + zParts = Strings.appendString( zParts, "" );
114 113 }
115 114 return FACTORY.like( zSCD, zParts );
116 115 }