Subversion Repository Public Repository

litesoft

Diff Revisions 803 vs 804 for /trunk/Java/GWT/OldServer/src/org/litesoft/GWT/eventbus/server/AuthenticatedServerEventBus.java

Diff revisions: vs.
  @@ -6,7 +6,7 @@
6 6 import org.litesoft.GWT.eventbus.client.nonpublic.*;
7 7 import org.litesoft.GWT.eventbus.server.nonpublic.*;
8 8 import org.litesoft.*;
9 - import org.litesoft.util.*;
9 + import org.litesoft.core.typeutils.*;
10 10
11 11 public class AuthenticatedServerEventBus extends NonTemporaryServerEventBus
12 12 {
  @@ -23,7 +23,7 @@
23 23 {
24 24 super( pClientIdNumber );
25 25
26 - Utils.assertNotNull( "AuthenticatedServerEventBusSupport", mSupport = pSupport );
26 + Objects.assertNotNull( "AuthenticatedServerEventBusSupport", mSupport = pSupport );
27 27 mAuthenticationService = (pAuthenticationService != null) ? //
28 28 pAuthenticationService : //
29 29 IAuthenticationService.Null.INSTANCE;