From 460d4cc976ab599dfa3b77b1e893d1a439c06f5d Mon Sep 17 00:00:00 2001 From: markt Date: Wed, 5 Jan 2011 09:57:44 +0000 Subject: [PATCH] Remove unused code git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@1055389 13f79535-47bb-0310-9956-ffa450edef68 --- java/org/apache/coyote/Response.java | 26 -------------------------- 1 file changed, 26 deletions(-) diff --git a/java/org/apache/coyote/Response.java b/java/org/apache/coyote/Response.java index 9591f8f8f..f5ba64329 100644 --- a/java/org/apache/coyote/Response.java +++ b/java/org/apache/coyote/Response.java @@ -109,11 +109,6 @@ public final class Response { */ protected boolean charsetSet = false; - /** - * Request error URI. - */ - protected String errorURI = null; - protected Request req; // ------------------------------------------------------------- Properties @@ -245,22 +240,6 @@ public final class Response { } - /** - * Set request URI that caused an error during - * request processing. - */ - public void setErrorURI(String uri) { - errorURI = uri; - } - - - /** Get the request URI that caused the original error. - */ - public String getErrorURI() { - return errorURI; - } - - // -------------------- Methods -------------------- @@ -569,7 +548,6 @@ public final class Response { message = null; commited = false; errorException = null; - errorURI = null; headers.clear(); // update counters @@ -579,8 +557,4 @@ public final class Response { public long getBytesWritten() { return bytesWritten; } - - public void setBytesWritten(long bytesWritten) { - this.bytesWritten = bytesWritten; - } } -- 2.11.0