Subversion Repository Public Repository

litesoft

Diff Revisions 806 vs 809 for /trunk/Java/GWT/Server/src/org/litesoft/GWT/server/ReportTableDefinition.java

Diff revisions: vs.
  @@ -9,7 +9,6 @@
9 9 import org.litesoft.core.typeutils.Lists;
10 10 import org.litesoft.orsup.base.*;
11 11 import org.litesoft.orsup.otherattributeaccessors.*;
12 - import org.litesoft.util.*;
13 12
14 13 import com.google.gwt.gen2.table.client.*;
15 14 import com.google.gwt.gen2.table.client.property.*;
  @@ -57,7 +56,7 @@
57 56 {
58 57 return;
59 58 }
60 - if ( Utils.isNotNullOrEmpty( pTitleLines ) )
59 + if ( Objects.isNotNullOrEmpty( pTitleLines ) )
61 60 {
62 61 pWriter.append( " <tr>\n" );
63 62 pWriter.append( " <th align=\"center\" colspan=\"" ).append( String.valueOf( zDefinitions.size() ) ).append( "\" class=\"table_head\">" );
  @@ -144,7 +143,7 @@
144 143 return (pSCD instanceof AbstractAttributeAccessorSCDlocal) || (null != getAcceptableRelationship( pSCD ));
145 144 }
146 145 }.createPath( pDottedAttributeName );
147 - if ( Utils.isNullOrEmpty( zPathNodes ) )
146 + if ( Objects.isNullOrEmpty( zPathNodes ) )
148 147 {
149 148 throw new IllegalStateException( "Path '" + pDottedAttributeName + "' unacceptable for " + mPOMD.getIdentifierName() );
150 149 }