Subversion Repository Public Repository

litesoft

Diff Revisions 49 vs 801 for /trunk/Java/core/Server/src/org/litesoft/orsup/otherattributeaccessors/AttributeAccessorSCDpath.java

Diff revisions: vs.
  @@ -1,6 +1,7 @@
1 1 // This Source Code is in the Public Domain per: http://litesoft.org/License.txt
2 2 package org.litesoft.orsup.otherattributeaccessors;
3 3
4 + import org.litesoft.core.typeutils.*;
4 5 import org.litesoft.logger.*;
5 6 import org.litesoft.orsup.base.*;
6 7 import org.litesoft.util.*;
  @@ -134,7 +135,7 @@
134 135 String[] zReferences = Utils.parseChar( pDottedAttributereference, '.' );
135 136 for ( int i = 0; i < zReferences.length; i++ )
136 137 {
137 - if ( null == (zReferences[i] = Utils.noEmpty( zReferences[i] )) )
138 + if ( null == (zReferences[i] = Strings.noEmpty( zReferences[i] )) )
138 139 {
139 140 throw new IllegalArgumentException( Utils.toNth( i + 1 ) + " Reference empty!" );
140 141 }