You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by co...@apache.org on 2001/06/08 05:02:58 UTC

cvs commit: jakarta-tomcat/src/share/org/apache/tomcat/core ServerSession.java

costin      01/06/07 20:02:58

  Modified:    src/share/org/apache/tomcat/core ServerSession.java
  Log:
  Removed Serializable from ServerSession, it is not needed ( we serialize
  each individual object if it is serializable - so we have more
  control ), and it also creates problem on "special" environments.
  ( embeded )
  
  Revision  Changes    Path
  1.9       +1 -2      jakarta-tomcat/src/share/org/apache/tomcat/core/ServerSession.java
  
  Index: ServerSession.java
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat/src/share/org/apache/tomcat/core/ServerSession.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- ServerSession.java	2001/03/21 06:46:42	1.8
  +++ ServerSession.java	2001/06/08 03:02:56	1.9
  @@ -61,7 +61,6 @@
   import java.io.IOException;
   import java.io.ObjectInputStream;
   import java.io.ObjectOutputStream;
  -import java.io.Serializable;
   import java.util.Enumeration;
   import java.util.Hashtable;
   import java.util.Vector;
  @@ -85,7 +84,7 @@
    * @author <a href="mailto:jon@latchkey.com">Jon S. Stevens</a>
    * @author Costin Manolache
    */
  -public class ServerSession  implements  Serializable {
  +public class ServerSession {
   
       public static final int STATE_NEW=0;