Subversion Repository Public Repository

litesoft

Diff Revisions 151 vs 801 for /trunk/Java/GWT/Client/src/org/litesoft/GWT/client/FontSizer.java

Diff revisions: vs.
  @@ -4,6 +4,7 @@
4 4 import java.util.*;
5 5
6 6 import org.litesoft.GWT.client.widgets.nonpublic.*;
7 + import org.litesoft.core.typeutils.*;
7 8 import org.litesoft.core.util.*;
8 9
9 10 import com.google.gwt.user.client.ui.*;
  @@ -14,13 +15,13 @@
14 15
15 16 public static FontSizer get( String... pStyles )
16 17 {
17 - if ( null != (pStyles = UtilsCommon.noEmpty( pStyles )) )
18 + if ( null != (pStyles = Strings.noEmpty( pStyles )) )
18 19 {
19 20 if ( pStyles.length > 1 )
20 21 {
21 22 return getComposite( pStyles );
22 23 }
23 - String zStyle = UtilsCommon.noEmpty( pStyles[0] );
24 + String zStyle = Strings.noEmpty( pStyles[0] );
24 25 if ( zStyle != null )
25 26 {
26 27 return getSingle( zStyle );