Fix compile error introduced by bac0d4c0e074f1b6f13d52aaf6180f045e8b23bf

This commit is contained in:
Norman Maurer 2016-09-01 08:39:52 +02:00
parent 26bdae9b47
commit e84204ee93

View File

@ -94,12 +94,6 @@ public class SocketShutdownOutputBySelfTest extends AbstractClientSocketTest {
s = ss.accept();
ch.close().syncUninterruptibly();
try {
ch.shutdownInput().syncUninterruptibly();
fail();
} catch (Throwable cause) {
checkThrowable(cause);
}
try {
ch.shutdownOutput().syncUninterruptibly();
fail();