vmassol     01/09/28 13:14:15

  Modified:    src/framework/share/org/apache/cactus/util ClientCookie.java
  Log:
  forgot to change a class variable using the "m_Version" syntax into "version"
  
  Revision  Changes    Path
  1.6       +4 -4      
jakarta-cactus/src/framework/share/org/apache/cactus/util/ClientCookie.java
  
  Index: ClientCookie.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-cactus/src/framework/share/org/apache/cactus/util/ClientCookie.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- ClientCookie.java 2001/09/14 20:20:23     1.5
  +++ ClientCookie.java 2001/09/28 20:14:15     1.6
  @@ -59,7 +59,7 @@
    *
    * @author <a href="mailto:[EMAIL PROTECTED]";>Vincent Massol</a>
    *
  - * @version $Id: ClientCookie.java,v 1.5 2001/09/14 20:20:23 pier Exp $
  + * @version $Id: ClientCookie.java,v 1.6 2001/09/28 20:14:15 vmassol Exp $
    * @deprecated As of Cactus 1.2, replaced by org.apache.cactus.Cookie
    * @see org.apache.cactus.Cookie
    */
  @@ -103,7 +103,7 @@
       /**
        * The cookie's spec. version
        */
  -    private float m_Version;
  +    private float version;
   
       /**
        * Construct a client cookie.
  @@ -128,7 +128,7 @@
           this.name = theName;
           this.path = thePath;
           this.value = theValue;
  -        m_Version = theVersion;
  +        this.version = theVersion;
       }
   
       /**
  @@ -192,7 +192,7 @@
        */
       public float getVersion()
       {
  -        return m_Version;
  +        return this.version;
       }
   
   }
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to