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
public void onInputShutdown() throws IOException
{
// TODO
}
}

View File

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