Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--jetty-spdy/spdy-jetty-http/src/main/java/org/eclipse/jetty/spdy/http/ServerHTTPSPDYAsyncConnection.java5
1 files changed, 0 insertions, 5 deletions
diff --git a/jetty-spdy/spdy-jetty-http/src/main/java/org/eclipse/jetty/spdy/http/ServerHTTPSPDYAsyncConnection.java b/jetty-spdy/spdy-jetty-http/src/main/java/org/eclipse/jetty/spdy/http/ServerHTTPSPDYAsyncConnection.java
index 92b83d1269..6f7ca5aedb 100644
--- a/jetty-spdy/spdy-jetty-http/src/main/java/org/eclipse/jetty/spdy/http/ServerHTTPSPDYAsyncConnection.java
+++ b/jetty-spdy/spdy-jetty-http/src/main/java/org/eclipse/jetty/spdy/http/ServerHTTPSPDYAsyncConnection.java
@@ -464,11 +464,6 @@ public class ServerHTTPSPDYAsyncConnection extends AbstractHttpConnection implem
return pushHeaders;
}
- private boolean isIfModifiedSinceHeaderPresent()
- {
- return headers.get("if-modified-since") != null;
- }
-
private Buffer consumeContent(long maxIdleTime) throws IOException, InterruptedException
{
while (true)

Back to the top