Mercurial Hosting > luan
diff src/org/eclipse/jetty/io/nio/SslConnection.java @ 959:7b94f5b33c64
remove onClose()
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Thu, 13 Oct 2016 18:53:26 -0600 |
parents | 1094975d013b |
children | 3cd4c706a61f |
line wrap: on
line diff
--- a/src/org/eclipse/jetty/io/nio/SslConnection.java Thu Oct 13 18:48:20 2016 -0600 +++ b/src/org/eclipse/jetty/io/nio/SslConnection.java Thu Oct 13 18:53:26 2016 -0600 @@ -219,27 +219,16 @@ return this; } - /* ------------------------------------------------------------ */ public boolean isIdle() { return false; } - /* ------------------------------------------------------------ */ public boolean isSuspended() { return false; } - /* ------------------------------------------------------------ */ - public void onClose() - { - Connection connection = _sslEndPoint.getConnection(); - if (connection != null && connection != this) - connection.onClose(); - } - - /* ------------------------------------------------------------ */ @Override public void onIdleExpired(long idleForMs) { @@ -258,13 +247,11 @@ } } - /* ------------------------------------------------------------ */ public void onInputShutdown() throws IOException { } - /* ------------------------------------------------------------ */ private synchronized boolean process(Buffer toFill, Buffer toFlush) throws IOException { boolean some_progress=false;