Fixed FindBugs warnings

This commit is contained in:
Trustin Lee 2009-05-22 06:04:47 +00:00
parent 1f6591feb2
commit 6da3fb5a90

View File

@ -118,6 +118,7 @@ class HttpTunnelingChannelHandler extends SimpleChannelUpstreamHandler {
} finally {
reconnectLock.unlock();
if (!success) {
assert cause != null;
throw cause;
}
}
@ -145,6 +146,9 @@ class HttpTunnelingChannelHandler extends SimpleChannelUpstreamHandler {
session.invalidate();
} catch (Exception e) {
// Gulp - https://jira.jboss.org/jira/browse/JBWEB-139
logger.debug(
"Unexpected exception raised by the Servlet container; " +
"ignoring.", e);
}
}
}