Removed TODOs.

This commit is contained in:
Simone Bordet 2012-02-25 22:58:43 +01:00
parent 2ce29b740d
commit 6ed95152dd
2 changed files with 4 additions and 4 deletions

View File

@ -62,6 +62,5 @@ public class EmptyAsyncConnection extends AbstractConnection implements AsyncCon
@Override @Override
public void onInputShutdown() throws IOException public void onInputShutdown() throws IOException
{ {
// TODO
} }
} }

View File

@ -73,7 +73,10 @@ public class SPDYAsyncConnection extends AbstractConnection implements AsyncConn
progress |= endPoint.hasProgressed(); progress |= endPoint.hasProgressed();
if (!progress && filled < 0) if (!progress && filled < 0)
{
onInputShutdown();
close(false); close(false);
}
} }
return this; return this;
} }
@ -201,7 +204,7 @@ public class SPDYAsyncConnection extends AbstractConnection implements AsyncConn
@Override @Override
public AsyncEndPoint getEndPoint() public AsyncEndPoint getEndPoint()
{ {
return (AsyncEndPoint) super.getEndPoint(); return (AsyncEndPoint)super.getEndPoint();
} }
@Override @Override
@ -219,13 +222,11 @@ public class SPDYAsyncConnection extends AbstractConnection implements AsyncConn
@Override @Override
public void onClose() public void onClose()
{ {
// TODO
} }
@Override @Override
public void onInputShutdown() throws IOException public void onInputShutdown() throws IOException
{ {
// TODO
} }
@Override @Override