Mercurial Hosting > luan
comparison src/org/eclipse/jetty/server/Connector.java @ 902:769040d68b0a
remove connectionOpened()
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Fri, 07 Oct 2016 00:19:53 -0600 |
parents | d9a12a7339a6 |
children | 94f5d8a62385 |
comparison
equal
deleted
inserted
replaced
901:d9a12a7339a6 | 902:769040d68b0a |
---|---|
514 _name = (getHost() == null?"0.0.0.0":getHost()) + ":" + (getLocalPort() <= 0?port:getLocalPort()); | 514 _name = (getHost() == null?"0.0.0.0":getHost()) + ":" + (getLocalPort() <= 0?port:getLocalPort()); |
515 return _name; | 515 return _name; |
516 } | 516 } |
517 | 517 |
518 /* ------------------------------------------------------------ */ | 518 /* ------------------------------------------------------------ */ |
519 protected void connectionOpened(Connection connection) | |
520 { | |
521 } | |
522 | |
523 /* ------------------------------------------------------------ */ | |
524 protected void connectionClosed(Connection connection) | 519 protected void connectionClosed(Connection connection) |
525 { | 520 { |
526 connection.onClose(); | 521 connection.onClose(); |
527 } | 522 } |
528 | 523 |