From: markt Date: Tue, 23 Aug 2011 14:47:50 +0000 (+0000) Subject: Re-order. No functional change. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=bf75e118af752be8a74438427085b25b41aa9528;p=tomcat7.0 Re-order. No functional change. git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@1160720 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/java/org/apache/coyote/ajp/AbstractAjpProcessor.java b/java/org/apache/coyote/ajp/AbstractAjpProcessor.java index 9ed4df0d0..8f98a8858 100644 --- a/java/org/apache/coyote/ajp/AbstractAjpProcessor.java +++ b/java/org/apache/coyote/ajp/AbstractAjpProcessor.java @@ -555,17 +555,6 @@ public abstract class AbstractAjpProcessor extends AbstractProcessor { /** - * 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 AbstractAjpProcessor extends AbstractProcessor { /** + * 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 {