[jboss-cvs] JBossAS SVN: r109046 - trunk/tomcat/src/main/java/org/jboss/web/tomcat/service/session.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Mon Nov 1 11:57:18 EDT 2010


Author: pferraro
Date: 2010-11-01 11:57:17 -0400 (Mon, 01 Nov 2010)
New Revision: 109046

Modified:
   trunk/tomcat/src/main/java/org/jboss/web/tomcat/service/session/ClusteredSession.java
Log:
Drop obsolete method.

Modified: trunk/tomcat/src/main/java/org/jboss/web/tomcat/service/session/ClusteredSession.java
===================================================================
--- trunk/tomcat/src/main/java/org/jboss/web/tomcat/service/session/ClusteredSession.java	2010-11-01 15:56:28 UTC (rev 109045)
+++ trunk/tomcat/src/main/java/org/jboss/web/tomcat/service/session/ClusteredSession.java	2010-11-01 15:57:17 UTC (rev 109046)
@@ -718,22 +718,6 @@
       expire(notify, localCall, localOnly, ClusteredSessionNotificationCause.INVALIDATE);
    }
 
-   /**
-    * Expires the session, but in such a way that other cluster nodes
-    * are unaware of the expiration.
-    *
-    * @param notify true if notifications should be to sent to registered listeners; 
-    *               false otherwise
-    * 
-    * @deprecated Will be removed in AS 6
-    */
-   public void expire(boolean notify)
-   {
-      boolean localCall = true;
-      boolean localOnly = true;
-      expire(notify, localCall, localOnly, ClusteredSessionNotificationCause.TIMEOUT);
-   }
-
    public void recycle()
    {
       if (!isValid)



More information about the jboss-cvs-commits mailing list