From: markt Date: Sat, 1 Oct 2011 14:06:21 +0000 (+0000) Subject: Fix consequences of removing throws X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=4510dca9e260c931a8a0e434b3a9810526175799;p=tomcat7.0 Fix consequences of removing throws git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@1177983 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/java/org/apache/catalina/tribes/membership/McastServiceImpl.java b/java/org/apache/catalina/tribes/membership/McastServiceImpl.java index e2f805f32..8569ed460 100644 --- a/java/org/apache/catalina/tribes/membership/McastServiceImpl.java +++ b/java/org/apache/catalina/tribes/membership/McastServiceImpl.java @@ -408,8 +408,6 @@ public class McastServiceImpl data[i] = buffer.extractPackage(true); }catch (IllegalStateException ise) { log.debug("Unable to decode message.",ise); - }catch (IOException x) { - log.debug("Unable to decode message.",x); } } Runnable t = new Runnable() {