You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@shiro.apache.org by ka...@apache.org on 2010/10/15 18:55:17 UTC

svn commit: r1023018 - /shiro/trunk/core/src/main/java/org/apache/shiro/mgt/SessionsSecurityManager.java

Author: kaosko
Date: Fri Oct 15 16:55:17 2010
New Revision: 1023018

URL: http://svn.apache.org/viewvc?rev=1023018&view=rev
Log:
FIXED - issue SHIRO-201: SessionsSecurityManager destroy() doesn't call super.destroy() 
https://issues.apache.org/jira/browse/SHIRO-201
- added the call

Modified:
    shiro/trunk/core/src/main/java/org/apache/shiro/mgt/SessionsSecurityManager.java

Modified: shiro/trunk/core/src/main/java/org/apache/shiro/mgt/SessionsSecurityManager.java
URL: http://svn.apache.org/viewvc/shiro/trunk/core/src/main/java/org/apache/shiro/mgt/SessionsSecurityManager.java?rev=1023018&r1=1023017&r2=1023018&view=diff
==============================================================================
--- shiro/trunk/core/src/main/java/org/apache/shiro/mgt/SessionsSecurityManager.java (original)
+++ shiro/trunk/core/src/main/java/org/apache/shiro/mgt/SessionsSecurityManager.java Fri Oct 15 16:55:17 2010
@@ -128,5 +128,6 @@ public abstract class SessionsSecurityMa
     public void destroy() {
         LifecycleUtils.destroy(getSessionManager());
         this.sessionManager = null;
+        super.destroy();
     }
 }