Author: markt
Date: Wed Dec 10 19:22:52 2014
New Revision: 1644511
URL: http://svn.apache.org/r1644511
Log:
Min default buffer size must be at least 8k so this is fine.
Modified:
tomcat/trunk/java/org/apache/jasper/compiler/PageInfo.java
Modified: tomcat/trunk/java/org/apache/jasper/compiler/PageInfo.java
URL:
http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/jasper/compiler/PageInfo.java?rev=1644511&r1=1644510&r2=1644511&view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/jasper/compiler/PageInfo.java (original)
+++ tomcat/trunk/java/org/apache/jasper/compiler/PageInfo.java Wed Dec 10
19:22:52 2014
@@ -57,7 +57,7 @@ class PageInfo {
private String session;
private boolean isSession = true;
private String bufferValue;
- private int buffer = 8*1024; // XXX confirm
+ private int buffer = 8*1024;
private String autoFlush;
private boolean isAutoFlush = true;
private String isThreadSafeValue;
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]