Subversion Repository Public Repository

litesoft

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

Diff revisions: vs.
  @@ -3,7 +3,7 @@
3 3
4 4 import java.io.*;
5 5
6 - import org.litesoft.util.*;
6 + import org.litesoft.core.typeutils.*;
7 7
8 8 public final class ContextID implements Serializable
9 9 {
  @@ -12,8 +12,8 @@
12 12
13 13 public ContextID( String pGroupID, String pUniqueID )
14 14 {
15 - Utils.assertNotNull( "GroupID", mGroupID = pGroupID );
16 - Utils.assertNotNull( "UniqueID", mUniqueID = pUniqueID );
15 + Objects.assertNotNull( "GroupID", mGroupID = pGroupID );
16 + Objects.assertNotNull( "UniqueID", mUniqueID = pUniqueID );
17 17 }
18 18
19 19 @Override