This is an automated email from the ASF dual-hosted git repository.

jbertram pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/activemq-artemis.git


The following commit(s) were added to refs/heads/main by this push:
     new ecd270d0bd NO-JIRA remove unnecessary space in toString()
ecd270d0bd is described below

commit ecd270d0bd285a9743788cb6fe5da8f249a7a251
Author: Justin Bertram <[email protected]>
AuthorDate: Thu Dec 4 16:10:58 2025 -0600

    NO-JIRA remove unnecessary space in toString()
---
 .../core/protocol/core/impl/wireformat/ActiveMQExceptionMessage.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/artemis-core-client/src/main/java/org/apache/activemq/artemis/core/protocol/core/impl/wireformat/ActiveMQExceptionMessage.java
 
b/artemis-core-client/src/main/java/org/apache/activemq/artemis/core/protocol/core/impl/wireformat/ActiveMQExceptionMessage.java
index 718abe10c3..8350dac67d 100644
--- 
a/artemis-core-client/src/main/java/org/apache/activemq/artemis/core/protocol/core/impl/wireformat/ActiveMQExceptionMessage.java
+++ 
b/artemis-core-client/src/main/java/org/apache/activemq/artemis/core/protocol/core/impl/wireformat/ActiveMQExceptionMessage.java
@@ -63,7 +63,7 @@ public class ActiveMQExceptionMessage extends PacketImpl {
 
    @Override
    protected String getPacketString() {
-      return super.getPacketString() + ", exception= " + exception;
+      return super.getPacketString() + ", exception=" + exception;
    }
 
    @Override


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
For further information, visit: https://activemq.apache.org/contact


Reply via email to