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 2022/06/21 20:53:25 UTC

[activemq-artemis] branch main updated: ARTEMIS-3864 Removing debug statement

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

clebertsuconic 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 56e9d9525d ARTEMIS-3864 Removing debug statement
56e9d9525d is described below

commit 56e9d9525dd74f5ded55ff0bdc9e896064c87db9
Author: Clebert Suconic <cl...@apache.org>
AuthorDate: Tue Jun 21 16:53:17 2022 -0400

    ARTEMIS-3864 Removing debug statement
---
 .../activemq/artemis/core/protocol/stomp/StompProtocolManager.java       | 1 -
 1 file changed, 1 deletion(-)

diff --git a/artemis-protocols/artemis-stomp-protocol/src/main/java/org/apache/activemq/artemis/core/protocol/stomp/StompProtocolManager.java b/artemis-protocols/artemis-stomp-protocol/src/main/java/org/apache/activemq/artemis/core/protocol/stomp/StompProtocolManager.java
index 1f9005a1c4..7ba235138c 100644
--- a/artemis-protocols/artemis-stomp-protocol/src/main/java/org/apache/activemq/artemis/core/protocol/stomp/StompProtocolManager.java
+++ b/artemis-protocols/artemis-stomp-protocol/src/main/java/org/apache/activemq/artemis/core/protocol/stomp/StompProtocolManager.java
@@ -240,7 +240,6 @@ public class StompProtocolManager extends AbstractProtocolManager<StompFrame, St
 
 
    private StompSession internalGetSession(StompConnection connection, Map<Object, StompSession> sessions, Object id, boolean transacted) throws Exception {
-      System.out.println("Looking for sessionID " + id);
       StompSession stompSession = sessions.get(id);
       if (stompSession == null) {
          stompSession = new StompSession(connection, this, server.getStorageManager().newContext(server.getExecutorFactory().getExecutor()));