Subversion Repository Public Repository

litesoft

Diff Revisions 499 vs 801 for /trunk/Java/core/Server/src/org/litesoft/configuration/ServerConfigDataAccessorFactoryProxy.java

Diff revisions: vs.
  @@ -3,6 +3,7 @@
3 3
4 4 import java.util.*;
5 5
6 + import org.litesoft.core.typeutils.*;
6 7 import org.litesoft.util.*;
7 8
8 9 public class ServerConfigDataAccessorFactoryProxy implements ConfigDataAccessorFactory
  @@ -53,8 +54,8 @@
53 54 Properties properties = System.getProperties();
54 55 for ( Map.Entry<Object, Object> zEntry : properties.entrySet() )
55 56 {
56 - String zKey = Utils.noEmpty( Utils.toString( zEntry.getKey() ) );
57 - String zValue = Utils.noEmpty( Utils.toString( zEntry.getValue() ) );
57 + String zKey = Strings.noEmpty( Utils.toString( zEntry.getKey() ) );
58 + String zValue = Strings.noEmpty( Utils.toString( zEntry.getValue() ) );
58 59 if ( (zKey != null) && (zValue != null) )
59 60 {
60 61 mSystemKeyValues.put( zKey, zValue );