Subversion Repository Public Repository

litesoft

Diff Revisions 916 vs 917 for /trunk/Java/PoVoGenerator/Generator/src/org/litesoft/generator/AbstractTypeFileGenerator.java

Diff revisions: vs.
  @@ -14,6 +14,7 @@
14 14 import org.litesoft.core.simpletypes.currency.*;
15 15 import org.litesoft.core.simpletypes.temporal.*;
16 16 import org.litesoft.core.typeutils.*;
17 + import org.litesoft.core.typeutils.Objects;
17 18
18 19 public abstract class AbstractTypeFileGenerator extends SourceCodeGenerator
19 20 {
  @@ -288,7 +289,7 @@
288 289 protected void addPSFSattributeValidOptions( AttributeProxy pAttribute, String pPOorVO )
289 290 {
290 291 String[] zOptions = pAttribute.getValidOptions();
291 - if ( Objects.isNotNullOrEmpty( zOptions ) && (zOptions.length < 10) )
292 + if ( Objects.isNotNullOrEmpty(zOptions) && (zOptions.length < 10) )
292 293 {
293 294 addBlankLine();
294 295 for ( String zOption : zOptions )