You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ma...@apache.org on 2016/10/21 09:56:39 UTC

[36/41] activemq-artemis git commit: ARTEMIS-809 Removing Large message body from toString()

ARTEMIS-809 Removing Large message body from toString()


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

Branch: refs/heads/ARTEMIS-780
Commit: e44c99d88423b9fe9ad0cd06d10ea0277d284f5b
Parents: 596f355
Author: Clebert Suconic <cl...@apache.org>
Authored: Thu Oct 20 11:12:04 2016 -0400
Committer: Clebert Suconic <cl...@apache.org>
Committed: Thu Oct 20 11:19:13 2016 -0400

----------------------------------------------------------------------
 .../core/impl/wireformat/SessionSendContinuationMessage.java      | 3 ---
 1 file changed, 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/e44c99d8/artemis-core-client/src/main/java/org/apache/activemq/artemis/core/protocol/core/impl/wireformat/SessionSendContinuationMessage.java
----------------------------------------------------------------------
diff --git a/artemis-core-client/src/main/java/org/apache/activemq/artemis/core/protocol/core/impl/wireformat/SessionSendContinuationMessage.java b/artemis-core-client/src/main/java/org/apache/activemq/artemis/core/protocol/core/impl/wireformat/SessionSendContinuationMessage.java
index 16fd073..b4ec027 100644
--- a/artemis-core-client/src/main/java/org/apache/activemq/artemis/core/protocol/core/impl/wireformat/SessionSendContinuationMessage.java
+++ b/artemis-core-client/src/main/java/org/apache/activemq/artemis/core/protocol/core/impl/wireformat/SessionSendContinuationMessage.java
@@ -16,8 +16,6 @@
  */
 package org.apache.activemq.artemis.core.protocol.core.impl.wireformat;
 
-import java.util.Arrays;
-
 import org.apache.activemq.artemis.api.core.ActiveMQBuffer;
 import org.apache.activemq.artemis.api.core.client.SendAcknowledgementHandler;
 import org.apache.activemq.artemis.core.message.impl.MessageInternal;
@@ -124,7 +122,6 @@ public class SessionSendContinuationMessage extends SessionContinuationMessage {
    @Override
    public String toString() {
       StringBuffer buff = new StringBuffer(getParentString());
-      buff.append(", body=" + Arrays.toString(body));
       buff.append(", continues=" + continues);
       buff.append(", message=" + message);
       buff.append(", messageBodySize=" + messageBodySize);