Subversion Repository Public Repository

litesoft

Diff Revisions 729 vs 801 for /trunk/Java/GWT/Client/src/org/litesoft/GWT/client/util/externalization/ExternalizedText.java

Diff revisions: vs.
  @@ -2,6 +2,7 @@
2 2
3 3 import java.util.*;
4 4
5 + import org.litesoft.core.typeutils.*;
5 6 import org.litesoft.core.util.*;
6 7
7 8 import com.google.gwt.i18n.client.Dictionary;
  @@ -42,8 +43,8 @@
42 43 */
43 44 public String get( String key )
44 45 {
45 - key = UtilsCommon.noEmpty( key );
46 - return (key != null) ? UtilsCommon.noEmpty( safeGet( key ) ) : null;
46 + key = Strings.noEmpty( key );
47 + return (key != null) ? Strings.noEmpty( safeGet( key ) ) : null;
47 48 }
48 49
49 50 /**