From 30ee5898e18883cb7f972e1dbe657c30994da47f Mon Sep 17 00:00:00 2001 From: markt Date: Thu, 30 Sep 2010 00:31:33 +0000 Subject: [PATCH] Clean-up. No functional change. git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@1002912 13f79535-47bb-0310-9956-ffa450edef68 --- java/org/apache/coyote/Response.java | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/java/org/apache/coyote/Response.java b/java/org/apache/coyote/Response.java index ed1b33b86..1661078a8 100644 --- a/java/org/apache/coyote/Response.java +++ b/java/org/apache/coyote/Response.java @@ -35,14 +35,6 @@ import org.apache.tomcat.util.http.MimeHeaders; */ public final class Response { - - // ----------------------------------------------------------- Constructors - - - public Response() { - } - - // ----------------------------------------------------- Class Variables /** @@ -301,12 +293,12 @@ public final class Response { } - public void finish() throws IOException { + public void finish() { action(ActionCode.CLOSE, this); } - public void acknowledge() throws IOException { + public void acknowledge() { action(ActionCode.ACK, this); } @@ -375,7 +367,7 @@ public final class Response { * Any implementation needs to notify ContextManager, to allow * interceptors to fix headers. */ - public void sendHeaders() throws IOException { + public void sendHeaders() { action(ActionCode.COMMIT, this); commited = true; } -- 2.11.0