Author: markt
Date: Tue Aug 23 14:47:50 2011
New Revision: 1160720
URL: http://svn.apache.org/viewvc?rev=1160720&view=rev
Log:
Re-order. No functional change.
Modified:
tomcat/trunk/java/org/apache/coyote/ajp/AbstractAjpProcessor.java
Modified: tomcat/trunk/java/org/apache/coyote/ajp/AbstractAjpProcessor.java
URL:
http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/coyote/ajp/AbstractAjpProcessor.java?rev=1160720&r1=1160719&r2=1160720&view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/coyote/ajp/AbstractAjpProcessor.java (original)
+++ tomcat/trunk/java/org/apache/coyote/ajp/AbstractAjpProcessor.java Tue Aug
23 14:47:50 2011
@@ -555,17 +555,6 @@ public abstract class AbstractAjpProcess
/**
- * Callback to write data from the buffer.
- */
- protected void flush(boolean explicit) throws IOException {
- if (explicit && !finished) {
- // Send the flush message
- output(flushMessageArray, 0, flushMessageArray.length);
- }
- }
-
-
- /**
* After reading the request headers, we have to setup the request filters.
*/
protected void prepareRequest() {
@@ -939,6 +928,17 @@ public abstract class AbstractAjpProcess
/**
+ * Callback to write data from the buffer.
+ */
+ protected void flush(boolean explicit) throws IOException {
+ if (explicit && !finished) {
+ // Send the flush message
+ output(flushMessageArray, 0, flushMessageArray.length);
+ }
+ }
+
+
+ /**
* Finish AJP response.
*/
protected void finish() throws IOException {
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]