Allow Checkstyle's unused imports test to be used with this class
authormarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Sun, 24 Oct 2010 12:52:04 +0000 (12:52 +0000)
committermarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Sun, 24 Oct 2010 12:52:04 +0000 (12:52 +0000)
Fix Eclipse warnings

git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@1026780 13f79535-47bb-0310-9956-ffa450edef68

java/org/apache/catalina/tribes/ChannelSender.java

index 17d23f3..a818f1d 100644 (file)
@@ -48,7 +48,8 @@ public interface ChannelSender extends Heartbeat
      * Start the channel sender
      * @throws IOException if preprocessing takes place and an error happens
      */
-    public void start() throws java.io.IOException;
+    public void start() throws IOException;
+
     /**
      * Stop the channel sender
      */
@@ -57,6 +58,7 @@ public interface ChannelSender extends Heartbeat
     /**
      * A channel heartbeat, use this method to clean up resources
      */
+    @Override
     public void heartbeat() ;
     
     /**