Slip in DefaultOioSocketChannelConfig (setAllowHalfClosure used to ignore argument)

This commit is contained in:
Sasha Zverev 2013-09-20 16:35:28 +04:00 committed by Norman Maurer
parent a855f19ad6
commit 71c062167d

View File

@ -134,7 +134,7 @@ public class DefaultOioSocketChannelConfig extends DefaultSocketChannelConfig im
@Override
public OioSocketChannelConfig setAllowHalfClosure(boolean allowHalfClosure) {
super.setAllowHalfClosure(true);
super.setAllowHalfClosure(allowHalfClosure);
return this;
}