Subversion Repository Public Repository

litesoft

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

Diff revisions: vs.
  @@ -3,7 +3,7 @@
3 3
4 4 import java.util.*;
5 5
6 - import org.litesoft.util.*;
6 + import org.litesoft.core.typeutils.*;
7 7
8 8 @SuppressWarnings({"UnusedDeclaration"})
9 9 public class ServerContext
  @@ -48,8 +48,8 @@
48 48
49 49 public ServerContext( ContextID pContextID, ServerSession pServerSession )
50 50 {
51 - Utils.assertNotNull( "ContextID", mContextID = pContextID );
52 - Utils.assertNotNull( "ServerSession", mServerSession = pServerSession );
51 + Objects.assertNotNull( "ContextID", mContextID = pContextID );
52 + Objects.assertNotNull( "ServerSession", mServerSession = pServerSession );
53 53 }
54 54
55 55 public ContextID getContextID()