Temporarily commented out non-compiling code.

This commit is contained in:
Simone Bordet 2014-12-18 17:13:50 +01:00
parent 4ccd5207b5
commit 3d5c785dd3
1 changed files with 2 additions and 2 deletions

View File

@ -57,7 +57,7 @@ public class HttpInputOverHTTP extends HttpInput implements Callback
{
try (Blocker blocker=_readBlocker.acquire())
{
_httpConnection.fillInterested(blocker);
// _httpConnection.fillInterested(blocker);
if (LOG.isDebugEnabled())
LOG.debug("{} block readable on {}",this,blocker);
blocker.block();
@ -104,7 +104,7 @@ public class HttpInputOverHTTP extends HttpInput implements Callback
@Override
protected void unready()
{
_httpConnection.fillInterested(this);
// _httpConnection.fillInterested(this);
}
@Override