removed debug prints

This commit is contained in:
Greg Wilkins 2013-05-14 17:57:52 +10:00
parent 4dd80e9128
commit c03cb95e8a

View File

@ -324,19 +324,20 @@ public class HttpConnection extends AbstractConnection implements Runnable, Http
}
catch (InterruptedException x)
{
x.printStackTrace();
throw (IOException)new InterruptedIOException().initCause(x);
}
catch (TimeoutException e)
{
e.printStackTrace();
throw new IOException(e);
}
catch (ClosedChannelException e)
{
e.printStackTrace();
throw new EofException(e);
}
catch (IOException e)
{
throw e;
}
catch (TimeoutException e)
{
throw new IOException(e);
}
}
@Override