Subversion Repository Public Repository

litesoft

Diff Revisions 803 vs 804 for /trunk/Java/core/Server/src/org/litesoft/orsup/nonpublic/TransactionImpl.java

Diff revisions: vs.
  @@ -5,11 +5,11 @@
5 5 import java.util.*;
6 6
7 7 import org.litesoft.changemanagement.*;
8 + import org.litesoft.core.typeutils.*;
8 9 import org.litesoft.db.*;
9 10 import org.litesoft.orsup.base.*;
10 11 import org.litesoft.orsup.transact.*;
11 12 import org.litesoft.orsup.transact.nonpublic.*;
12 - import org.litesoft.util.*;
13 13
14 14 public class TransactionImpl extends AbstractFinder implements Transaction,
15 15 TransactionBackdoor
  @@ -95,7 +95,7 @@
95 95 @Override
96 96 public final void addProperty( Object pKey, Object pValue )
97 97 {
98 - Utils.assertNotNull( "Key", pKey );
98 + Objects.assertNotNull( "Key", pKey );
99 99 if ( pValue != null )
100 100 {
101 101 mProperties.put( pKey, pValue );
  @@ -109,7 +109,7 @@
109 109 @Override
110 110 public final Object getProperty( Object pKey )
111 111 {
112 - Utils.assertNotNull( "Key", pKey );
112 + Objects.assertNotNull( "Key", pKey );
113 113 return mProperties.get( pKey );
114 114 }
115 115