You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by ro...@apache.org on 2015/07/23 14:06:06 UTC

[03/10] qpid-proton git commit: PROTON-954: remove dead code

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 <ro...@apache.org>
Authored: Thu Jul 23 12:55:25 2015 +0100
Committer: Robert Gemmell <ro...@apache.org>
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: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org