mirror of
https://github.com/jetty/jetty.project.git
synced 2025-03-04 21:09:13 +00:00
removed debug prints
This commit is contained in:
parent
4dd80e9128
commit
c03cb95e8a
@ -324,19 +324,20 @@ public class HttpConnection extends AbstractConnection implements Runnable, Http
|
|||||||
}
|
}
|
||||||
catch (InterruptedException x)
|
catch (InterruptedException x)
|
||||||
{
|
{
|
||||||
x.printStackTrace();
|
|
||||||
throw (IOException)new InterruptedIOException().initCause(x);
|
throw (IOException)new InterruptedIOException().initCause(x);
|
||||||
}
|
}
|
||||||
catch (TimeoutException e)
|
|
||||||
{
|
|
||||||
e.printStackTrace();
|
|
||||||
throw new IOException(e);
|
|
||||||
}
|
|
||||||
catch (ClosedChannelException e)
|
catch (ClosedChannelException e)
|
||||||
{
|
{
|
||||||
e.printStackTrace();
|
|
||||||
throw new EofException(e);
|
throw new EofException(e);
|
||||||
}
|
}
|
||||||
|
catch (IOException e)
|
||||||
|
{
|
||||||
|
throw e;
|
||||||
|
}
|
||||||
|
catch (TimeoutException e)
|
||||||
|
{
|
||||||
|
throw new IOException(e);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
Loading…
x
Reference in New Issue
Block a user