Subversion Repository Public Repository

litesoft

Diff Revisions 821 vs 822 for /trunk/Java/core/Anywhere/src/org/litesoft/bo/BoAttribute.java

Diff revisions: vs.
  @@ -5,7 +5,6 @@
5 5 import org.litesoft.core.simpletypes.currency.*;
6 6 import org.litesoft.core.simpletypes.temporal.*;
7 7 import org.litesoft.core.typeutils.*;
8 - import org.litesoft.core.util.*;
9 8
10 9 public interface BoAttribute extends java.io.Serializable
11 10 {
  @@ -92,7 +91,7 @@
92 91 @Override
93 92 public Object normalize( Object pValue, boolean pRequired )
94 93 {
95 - return UtilsCommon.isEmptyString( pValue ) ? null : pValue;
94 + return Objects.isEmptyString( pValue ) ? null : pValue;
96 95 }
97 96 },
98 97 Integer