You are viewing a plain text version of this content. The canonical link for it is here.
Posted to taglibs-dev@jakarta.apache.org by gl...@locus.apache.org on 2000/11/11 16:49:35 UTC

cvs commit: jakarta-taglibs/response/src/org/apache/taglibs/response CookiePathTag.java

glenn       00/11/11 07:49:35

  Modified:    response/src/org/apache/taglibs/response CookiePathTag.java
  Log:
  Cleanup for release
  
  Revision  Changes    Path
  1.2       +6 -6      jakarta-taglibs/response/src/org/apache/taglibs/response/CookiePathTag.java
  
  Index: CookiePathTag.java
  ===================================================================
  RCS file: /home/cvs/jakarta-taglibs/response/src/org/apache/taglibs/response/CookiePathTag.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- CookiePathTag.java	2000/09/26 20:00:26	1.1
  +++ CookiePathTag.java	2000/11/11 15:49:35	1.2
  @@ -1,7 +1,7 @@
   /*
  - * $Header: /home/cvs/jakarta-taglibs/response/src/org/apache/taglibs/response/CookiePathTag.java,v 1.1 2000/09/26 20:00:26 glenn Exp $
  - * $Revision: 1.1 $
  - * $Date: 2000/09/26 20:00:26 $
  + * $Header: /home/cvs/jakarta-taglibs/response/src/org/apache/taglibs/response/CookiePathTag.java,v 1.2 2000/11/11 15:49:35 glenn Exp $
  + * $Revision: 1.2 $
  + * $Date: 2000/11/11 15:49:35 $
    *
    * ====================================================================
    *
  @@ -79,7 +79,7 @@
    * <name>path</name>
    * <tagclass>org.apache.taglibs.response.CookiePathTag</tagclass>
    * <bodycontent>JSP</bodycontent>
  - * <info>Used to set a cookie path.</info>
  + * <info>Set a cookie path.</info>
    * </pre>
    *
    * @author Glenn Nielsen
  @@ -93,7 +93,7 @@
        *
        * @return EVAL_BODY_TAG
        */
  -    public int doStartTag() throws JspException
  +    public final int doStartTag() throws JspException
       {
   	return EVAL_BODY_TAG;
       }
  @@ -103,7 +103,7 @@
        *
        * @return SKIP_BODY
        */
  -    public int doAfterBody() throws JspException
  +    public final int doAfterBody() throws JspException
       {
           // Use the body of the tag as cookie path
           BodyContent body = getBodyContent();