Author: kkolinko Date: Tue Mar 4 10:09:49 2014 New Revision: 1574010 URL: http://svn.apache.org/r1574010 Log: Merged r1574004 from tomcat/trunk: Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=56010 Documentation part of the fix
The constants mentioned in JspFactory.getPageContext(..) belong to JspWriter. There are no such constants in PageContext. Javadoc in JavaEE 7 (as referenced in bug 56010) has been updated. Modified: tomcat/tc7.0.x/trunk/ (props changed) tomcat/tc7.0.x/trunk/java/javax/servlet/jsp/JspFactory.java Propchange: tomcat/tc7.0.x/trunk/ ------------------------------------------------------------------------------ Merged /tomcat/trunk:r1574004 Modified: tomcat/tc7.0.x/trunk/java/javax/servlet/jsp/JspFactory.java URL: http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/java/javax/servlet/jsp/JspFactory.java?rev=1574010&r1=1574009&r2=1574010&view=diff ============================================================================== --- tomcat/tc7.0.x/trunk/java/javax/servlet/jsp/JspFactory.java (original) +++ tomcat/tc7.0.x/trunk/java/javax/servlet/jsp/JspFactory.java Tue Mar 4 10:09:49 2014 @@ -102,9 +102,9 @@ public abstract class JspFactory { * @param errorPageURL the URL of the error page for the requesting JSP, or * null * @param needsSession true if the JSP participates in a session - * @param buffer size of buffer in bytes, PageContext.NO_BUFFER if no - * buffer, PageContext.DEFAULT_BUFFER if - * implementation default. + * @param buffer size of buffer in bytes, {@link JspWriter#NO_BUFFER} + * if no buffer, {@link JspWriter#DEFAULT_BUFFER} + * if implementation default. * @param autoflush should the buffer autoflush to the output stream on * buffer overflow, or throw an IOException? * --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org