Clean-up. No functional change.
authormarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Thu, 30 Sep 2010 00:31:33 +0000 (00:31 +0000)
committermarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Thu, 30 Sep 2010 00:31:33 +0000 (00:31 +0000)
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@1002912 13f79535-47bb-0310-9956-ffa450edef68

java/org/apache/coyote/Response.java

index ed1b33b..1661078 100644 (file)
@@ -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;
     }