Subversion Repository Public Repository

litesoft

Diff Revisions 952 vs 953 for /trunk/Java/GWT/Server/src/org/litesoft/GWT/server/ServletSessionHelper.java

Diff revisions: vs.
  @@ -68,7 +68,7 @@
68 68
69 69 @Override
70 70 public void valueUnbound( HttpSessionBindingEvent event ) {
71 - ServerContext.clearServerStore( mContextID );
71 + ServerStores.clear( mContextID );
72 72 VoCacheManager zCacheManager = sCacheManager;
73 73 if ( zCacheManager != null ) {
74 74 zCacheManager.drop( mContextID );
  @@ -77,7 +77,7 @@
77 77 }
78 78
79 79 private static class OurServerSession extends ServerSession {
80 - private HttpSession mSession;
80 + private final HttpSession mSession;
81 81
82 82 private OurServerSession( HttpSession pSession ) {
83 83 mSession = pSession;