Subversion Repository Public Repository

litesoft

Diff Revisions 810 vs 811 for /trunk/Java/core/Server/src/org/litesoft/orsup/base/AttributeAccessorSCD.java

Diff revisions: vs.
  @@ -5,7 +5,6 @@
5 5
6 6 import org.litesoft.bo.attributes.*;
7 7 import org.litesoft.core.typeutils.*;
8 - import org.litesoft.util.*;
9 8
10 9 public abstract class AttributeAccessorSCD<Owner extends PersistentObject> extends SupplimentedSCD
11 10 {
  @@ -92,7 +91,7 @@
92 91 return to_UtilDate( pValue );
93 92 }
94 93
95 - throw new IllegalArgumentException( "unexpected value; expected: " + pTargetType + " but got: " + Utils.classNameOf( pValue ) );
94 + throw new IllegalArgumentException( "unexpected value; expected: " + pTargetType + " but got: " + Objects.classNameOf( pValue ) );
96 95 }
97 96
98 97 public static AttributeAccessorSCD[] append( AttributeAccessorSCD[] pOrig, AttributeAccessorSCD pNew )