ARTEMIS-3864 Removing debug statement
This commit is contained in:
parent
8d29742d40
commit
56e9d9525d
|
@ -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 {
|
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);
|
StompSession stompSession = sessions.get(id);
|
||||||
if (stompSession == null) {
|
if (stompSession == null) {
|
||||||
stompSession = new StompSession(connection, this, server.getStorageManager().newContext(server.getExecutorFactory().getExecutor()));
|
stompSession = new StompSession(connection, this, server.getStorageManager().newContext(server.getExecutorFactory().getExecutor()));
|
||||||
|
|
Loading…
Reference in New Issue