Mercurial Hosting > luan
comparison src/org/eclipse/jetty/io/AbstractConnection.java @ 1001:39154cfa58e4
minor
| author | Franklin Schmidt <fschmidt@gmail.com> |
|---|---|
| date | Sat, 22 Oct 2016 20:56:41 -0600 |
| parents | 7422ca1ae146 |
| children |
comparison
equal
deleted
inserted
replaced
| 1000:32d4b569567c | 1001:39154cfa58e4 |
|---|---|
| 26 | 26 |
| 27 public abstract class AbstractConnection implements Connection | 27 public abstract class AbstractConnection implements Connection |
| 28 { | 28 { |
| 29 private static final Logger LOG = LoggerFactory.getLogger(AbstractConnection.class); | 29 private static final Logger LOG = LoggerFactory.getLogger(AbstractConnection.class); |
| 30 | 30 |
| 31 protected final EndPoint _endp; | 31 public final EndPoint _endp; |
| 32 | 32 |
| 33 protected AbstractConnection(EndPoint endp) | 33 protected AbstractConnection(EndPoint endp) |
| 34 { | 34 { |
| 35 _endp = endp; | 35 _endp = endp; |
| 36 } | 36 } |
| 37 | |
| 38 public final EndPoint getEndPoint() | |
| 39 { | |
| 40 return _endp; | |
| 41 } | |
| 42 } | 37 } |
