PROTON-954: remove dead code
Project: http://git-wip-us.apache.org/repos/asf/qpid-proton/repo Commit: http://git-wip-us.apache.org/repos/asf/qpid-proton/commit/783129a2 Tree: http://git-wip-us.apache.org/repos/asf/qpid-proton/tree/783129a2 Diff: http://git-wip-us.apache.org/repos/asf/qpid-proton/diff/783129a2 Branch: refs/heads/master Commit: 783129a28820e4b2a5028c0ae28c29d540d188f7 Parents: a9594eb Author: Robert Gemmell <[email protected]> Authored: Thu Jul 23 12:55:25 2015 +0100 Committer: Robert Gemmell <[email protected]> Committed: Thu Jul 23 12:55:25 2015 +0100 ---------------------------------------------------------------------- .../apache/qpid/proton/engine/impl/TransportImpl.java | 11 ----------- 1 file changed, 11 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/qpid-proton/blob/783129a2/proton-j/src/main/java/org/apache/qpid/proton/engine/impl/TransportImpl.java ---------------------------------------------------------------------- diff --git a/proton-j/src/main/java/org/apache/qpid/proton/engine/impl/TransportImpl.java b/proton-j/src/main/java/org/apache/qpid/proton/engine/impl/TransportImpl.java index 5c6aea4..32b20af 100644 --- a/proton-j/src/main/java/org/apache/qpid/proton/engine/impl/TransportImpl.java +++ b/proton-j/src/main/java/org/apache/qpid/proton/engine/impl/TransportImpl.java @@ -492,17 +492,6 @@ public class TransportImpl extends EndpointImpl } } - private void dumpQueue(String msg) - { - System.out.print(" " + msg + "{"); - DeliveryImpl dlv = _connectionEndpoint.getTransportWorkHead(); - while (dlv != null) { - System.out.print(new Binary(dlv.getTag()) + ", "); - dlv = dlv.getTransportWorkNext(); - } - System.out.println("}"); - } - private void processTransportWork() { if(_connectionEndpoint != null) --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
