Index: TestTag.java
===================================================================
RCS file: /home/cvs/jakarta-watchdog/src/server/jsp-tests/WEB-INF/classes/jsp/tags/examples/TestTag.java,v
retrieving revision 1.2
diff -u -r1.2 TestTag.java
--- TestTag.java	2000/07/20 02:18:17	1.2
+++ TestTag.java	2001/05/18 04:40:14
@@ -55,8 +55,8 @@
 // Test for doStartTag method in TagSupport class.
 
     public int doStartTag() {
+       TestString="";
 
-
        if ("doStartTag".equalsIgnoreCase (this.getAtt1())) {
 
 // Test for methods in variableInfo class.
@@ -85,7 +85,6 @@
 	}
 
 
-
 } // if condition
 return EVAL_BODY_TAG;
 }
@@ -239,6 +238,11 @@
        if ("doEndTag".equalsIgnoreCase (this.getAtt1())) {
        	TestString +=this.getAtt1();
 		}
+        try {
+            if (toBrowser)
+                bodyOut.println(TestString);
+            bodyOut.writeOut(bodyOut.getEnclosingWriter());
+        } catch (IOException ioe) {}
        return EVAL_PAGE;
     }
 
