You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@shiro.apache.org by lh...@apache.org on 2012/01/07 04:58:28 UTC

svn commit: r1228568 - /shiro/trunk/core/src/main/java/org/apache/shiro/subject/support/DelegatingSubject.java

Author: lhazlewood
Date: Sat Jan  7 03:58:28 2012
New Revision: 1228568

URL: http://svn.apache.org/viewvc?rev=1228568&view=rev
Log:
SHIRO-323: removed Serializable from the implements clause (DelegatingSubjects are not really intended to be used across vm boundaries)

Modified:
    shiro/trunk/core/src/main/java/org/apache/shiro/subject/support/DelegatingSubject.java

Modified: shiro/trunk/core/src/main/java/org/apache/shiro/subject/support/DelegatingSubject.java
URL: http://svn.apache.org/viewvc/shiro/trunk/core/src/main/java/org/apache/shiro/subject/support/DelegatingSubject.java?rev=1228568&r1=1228567&r2=1228568&view=diff
==============================================================================
--- shiro/trunk/core/src/main/java/org/apache/shiro/subject/support/DelegatingSubject.java (original)
+++ shiro/trunk/core/src/main/java/org/apache/shiro/subject/support/DelegatingSubject.java Sat Jan  7 03:58:28 2012
@@ -39,7 +39,6 @@ import org.apache.shiro.util.StringUtils
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
-import java.io.Serializable;
 import java.util.ArrayList;
 import java.util.Collection;
 import java.util.List;
@@ -69,9 +68,7 @@ import java.util.concurrent.Callable;
  *
  * @since 0.1
  */
-public class DelegatingSubject implements Subject, Serializable {
-
-    private static final long serialVersionUID = -5094259915319399138L;
+public class DelegatingSubject implements Subject {
 
     private static final Logger log = LoggerFactory.getLogger(DelegatingSubject.class);