arron       02/03/19 15:29:23

  Modified:    src/share/org/apache/struts/taglib/nested/html
                        NestedFormTag.java
  Log:
  correcting a build error when using older JSP servlet.jar
  
  Revision  Changes    Path
  1.4       +6 -6      
jakarta-struts/src/share/org/apache/struts/taglib/nested/html/NestedFormTag.java
  
  Index: NestedFormTag.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-struts/src/share/org/apache/struts/taglib/nested/html/NestedFormTag.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- NestedFormTag.java        13 Mar 2002 13:13:28 -0000      1.3
  +++ NestedFormTag.java        19 Mar 2002 23:29:23 -0000      1.4
  @@ -1,7 +1,7 @@
   /*
  - * $Header: 
/home/cvs/jakarta-struts/src/share/org/apache/struts/taglib/nested/html/NestedFormTag.java,v
 1.3 2002/03/13 13:13:28 arron Exp $
  - * $Revision: 1.3 $
  - * $Date: 2002/03/13 13:13:28 $
  + * $Header: 
/home/cvs/jakarta-struts/src/share/org/apache/struts/taglib/nested/html/NestedFormTag.java,v
 1.4 2002/03/19 23:29:23 arron Exp $
  + * $Revision: 1.4 $
  + * $Date: 2002/03/19 23:29:23 $
    * ====================================================================
    *
    * The Apache Software License, Version 1.1
  @@ -69,7 +69,7 @@
    * NestedFormTag.
    * @author Arron Bates
    * @since Struts 1.1
  - * @version $Revision: 1.3 $ $Date: 2002/03/13 13:13:28 $
  + * @version $Revision: 1.4 $ $Date: 2002/03/19 23:29:23 $
    */
   public class NestedFormTag extends FormTag implements NestedParentSupport {
   
  @@ -110,9 +110,9 @@
      * This is only overriden to clean up the include reference
      * @return int JSP continuation directive.
      */
  -  public int doAfterBody() throws JspException {
  +  public int doEndTag() throws JspException {
       /* store original result */
  -    int temp = super.doAfterBody();
  +    int temp = super.doEndTag();
   
       /* all done. clean up */
       HttpSession session = (HttpSession)pageContext.getSession();
  
  
  

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

Reply via email to