You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by cl...@apache.org on 2018/08/15 13:57:07 UTC

activemq-artemis git commit: ARTEMIS-1918 Remove unused private field clientID (cherry picked from commit 197661cb5800973a721789e1f828bebf4c8999bc)

Repository: activemq-artemis
Updated Branches:
  refs/heads/2.6.x fc5888bb9 -> b00eaad20


ARTEMIS-1918 Remove unused private field clientID
(cherry picked from commit 197661cb5800973a721789e1f828bebf4c8999bc)


Project: http://git-wip-us.apache.org/repos/asf/activemq-artemis/repo
Commit: http://git-wip-us.apache.org/repos/asf/activemq-artemis/commit/b00eaad2
Tree: http://git-wip-us.apache.org/repos/asf/activemq-artemis/tree/b00eaad2
Diff: http://git-wip-us.apache.org/repos/asf/activemq-artemis/diff/b00eaad2

Branch: refs/heads/2.6.x
Commit: b00eaad20ff2d6d68d242efc09624284d363b38e
Parents: fc5888b
Author: Johan Stenberg <35...@users.noreply.github.com>
Authored: Fri Jun 8 21:57:24 2018 +0200
Committer: Clebert Suconic <cl...@apache.org>
Committed: Wed Aug 15 09:56:52 2018 -0400

----------------------------------------------------------------------
 .../artemis/core/protocol/core/impl/RemotingConnectionImpl.java | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/b00eaad2/artemis-core-client/src/main/java/org/apache/activemq/artemis/core/protocol/core/impl/RemotingConnectionImpl.java
----------------------------------------------------------------------
diff --git a/artemis-core-client/src/main/java/org/apache/activemq/artemis/core/protocol/core/impl/RemotingConnectionImpl.java b/artemis-core-client/src/main/java/org/apache/activemq/artemis/core/protocol/core/impl/RemotingConnectionImpl.java
index f24fe87..db2b500 100644
--- a/artemis-core-client/src/main/java/org/apache/activemq/artemis/core/protocol/core/impl/RemotingConnectionImpl.java
+++ b/artemis-core-client/src/main/java/org/apache/activemq/artemis/core/protocol/core/impl/RemotingConnectionImpl.java
@@ -76,9 +76,6 @@ public class RemotingConnectionImpl extends AbstractRemotingConnection implement
 
    private final SimpleString nodeID;
 
-   private String clientID;
-
-
    @Override
    public void scheduledFlush() {
       flush();
@@ -148,7 +145,7 @@ public class RemotingConnectionImpl extends AbstractRemotingConnection implement
 
    @Override
    public String toString() {
-      return "RemotingConnectionImpl [ID=" + getID() + ", clientID=" + clientID + ", nodeID=" + nodeID + ", transportConnection=" + getTransportConnection() + "]";
+      return "RemotingConnectionImpl [ID=" + getID() + ", clientID=" + getClientID() + ", nodeID=" + nodeID + ", transportConnection=" + getTransportConnection() + "]";
    }
 
    /**