Subversion Repository Public Repository

litesoft

Diff Revisions 151 vs 804 for /trunk/Java/core/Server/src/org/litesoft/orsup/base/PersistentObjectUniqueKeyForInstance.java

Diff revisions: vs.
  @@ -1,8 +1,8 @@
1 1 // This Source Code is in the Public Domain per: http://litesoft.org/License.txt
2 2 package org.litesoft.orsup.base;
3 3
4 + import org.litesoft.core.typeutils.*;
4 5 import org.litesoft.orsup.selection.*;
5 - import org.litesoft.util.*;
6 6
7 7 /**
8 8 * An inpliementation of a PersistentObjectUniqueKey that is PO Instance/Identity based for those POs that do NOT have a Unique Key
  @@ -14,7 +14,7 @@
14 14
15 15 public PersistentObjectUniqueKeyForInstance( PersistentObject<?> pPersistentObject )
16 16 {
17 - Utils.assertNotNull( "PersistentObject", mPersistentObject = pPersistentObject );
17 + Objects.assertNotNull( "PersistentObject", mPersistentObject = pPersistentObject );
18 18 mPOsystemHashCode = System.identityHashCode( mPersistentObject );
19 19 }
20 20