Subversion Repository Public Repository

litesoft

Diff Revisions 949 vs 950 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.commonfoundation.typeutils.*;
9 + import org.litesoft.commonfoundation.base.*;
10 10
11 11 public class AuthenticatedServerEventBus extends NonTemporaryServerEventBus {
12 12 private AuthenticatedServerEventBusSupport mSupport;
  @@ -20,7 +20,7 @@
20 20 IAuthenticationService pAuthenticationService ) {
21 21 super( pClientIdNumber );
22 22
23 - Objects.assertNotNull( "AuthenticatedServerEventBusSupport", mSupport = pSupport );
23 + Confirm.isNotNull( "AuthenticatedServerEventBusSupport", mSupport = pSupport );
24 24 mAuthenticationService = (pAuthenticationService != null) ? //
25 25 pAuthenticationService : //
26 26 IAuthenticationService.Null.INSTANCE;