kinman 2003/04/03 11:45:50 Modified: jasper2/src/share/org/apache/jasper JspC.java Log: - Fix bug for single file compilation. Revision Changes Path 1.38 +5 -4 jakarta-tomcat-jasper/jasper2/src/share/org/apache/jasper/JspC.java Index: JspC.java =================================================================== RCS file: /home/cvs/jakarta-tomcat-jasper/jasper2/src/share/org/apache/jasper/JspC.java,v retrieving revision 1.37 retrieving revision 1.38 diff -u -r1.37 -r1.38 --- JspC.java 6 Mar 2003 20:11:16 -0000 1.37 +++ JspC.java 3 Apr 2003 19:45:50 -0000 1.38 @@ -780,10 +780,11 @@ } if (webxmlLevel >= ALL_WEBXML) { mapout.write(Localizer.getMessage("jspc.webxml.header")); + mapout.flush(); } else if (webxmlLevel>= INC_WEBXML) { mapout.write(Localizer.getMessage("jspc.webinc.header")); + mapout.flush(); } - mapout.flush(); } catch (IOException ioe) { mapout = null; servletout = null;
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]