Fix checkstyle

This commit is contained in:
Trustin Lee 2013-07-17 21:17:52 +09:00
parent 31ecd17212
commit 5f235eafc3

View File

@ -131,7 +131,8 @@ public class LocalChannelTest {
// Ensure that the actual write attempt on a closed channel was never made by asserting that
// the ClosedChannelException has been created by AbstractUnsafe rather than transport implementations.
if (e.getStackTrace().length > 0) {
assertThat(e.getStackTrace()[0].getClassName(), is(AbstractChannel.class.getName() + "$AbstractUnsafe"));
assertThat(
e.getStackTrace()[0].getClassName(), is(AbstractChannel.class.getName() + "$AbstractUnsafe"));
e.printStackTrace();
}
}