Mercurial Hosting > luan
changeset 901:d9a12a7339a6
remove connectionUpgraded()
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Fri, 07 Oct 2016 00:17:26 -0600 |
parents | 6ffa88e38ba9 |
children | 769040d68b0a |
files | src/org/eclipse/jetty/server/Connector.java src/org/eclipse/jetty/server/nio/SelectChannelConnector.java |
diffstat | 2 files changed, 0 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/src/org/eclipse/jetty/server/Connector.java Fri Oct 07 00:15:04 2016 -0600 +++ b/src/org/eclipse/jetty/server/Connector.java Fri Oct 07 00:17:26 2016 -0600 @@ -521,11 +521,6 @@ } /* ------------------------------------------------------------ */ - protected void connectionUpgraded(Connection oldConnection, Connection newConnection) - { - } - - /* ------------------------------------------------------------ */ protected void connectionClosed(Connection connection) { connection.onClose();
--- a/src/org/eclipse/jetty/server/nio/SelectChannelConnector.java Fri Oct 07 00:15:04 2016 -0600 +++ b/src/org/eclipse/jetty/server/nio/SelectChannelConnector.java Fri Oct 07 00:17:26 2016 -0600 @@ -305,7 +305,6 @@ @Override protected void endPointUpgraded(ConnectedEndPoint endpoint, Connection oldConnection) { - connectionUpgraded(oldConnection,endpoint.getConnection()); } @Override