Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimone Bordet2015-08-14 11:40:43 +0000
committerJoakim Erdfelt2015-08-14 21:48:51 +0000
commit94df04e57bbdf378efaf08924c563457d4db0508 (patch)
tree51e4b0e99988ea502596b80b90a773c8065bca39 /jetty-fcgi
parentb819273c7bfc65ce43582abe721633413f8fca7b (diff)
downloadorg.eclipse.jetty.project-94df04e57bbdf378efaf08924c563457d4db0508.tar.gz
org.eclipse.jetty.project-94df04e57bbdf378efaf08924c563457d4db0508.tar.xz
org.eclipse.jetty.project-94df04e57bbdf378efaf08924c563457d4db0508.zip
Fixed unnecessary double dispatch.
Diffstat (limited to 'jetty-fcgi')
-rw-r--r--jetty-fcgi/fcgi-server/src/main/java/org/eclipse/jetty/fcgi/server/ServerFCGIConnection.java1
1 files changed, 0 insertions, 1 deletions
diff --git a/jetty-fcgi/fcgi-server/src/main/java/org/eclipse/jetty/fcgi/server/ServerFCGIConnection.java b/jetty-fcgi/fcgi-server/src/main/java/org/eclipse/jetty/fcgi/server/ServerFCGIConnection.java
index 8c28ec05b2..2b87a91ca9 100644
--- a/jetty-fcgi/fcgi-server/src/main/java/org/eclipse/jetty/fcgi/server/ServerFCGIConnection.java
+++ b/jetty-fcgi/fcgi-server/src/main/java/org/eclipse/jetty/fcgi/server/ServerFCGIConnection.java
@@ -176,7 +176,6 @@ public class ServerFCGIConnection extends AbstractConnection
if (channel != null)
{
channel.onRequestComplete();
- channel.dispatch();
}
}

Back to the top