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 2017/08/30 14:42:08 UTC

activemq-artemis git commit: ARTEMIS-1378 Removing System.out left by accident

Repository: activemq-artemis
Updated Branches:
  refs/heads/master 4e0c3236f -> f37093e33


ARTEMIS-1378 Removing System.out left by accident


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

Branch: refs/heads/master
Commit: f37093e33cbef6070e9fca8ae0b3a68ea232bd73
Parents: 4e0c323
Author: Clebert Suconic <cl...@apache.org>
Authored: Wed Aug 30 10:41:11 2017 -0400
Committer: Clebert Suconic <cl...@apache.org>
Committed: Wed Aug 30 10:41:11 2017 -0400

----------------------------------------------------------------------
 .../persistence/impl/journal/AbstractJournalStorageManager.java   | 3 ---
 1 file changed, 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/f37093e3/artemis-server/src/main/java/org/apache/activemq/artemis/core/persistence/impl/journal/AbstractJournalStorageManager.java
----------------------------------------------------------------------
diff --git a/artemis-server/src/main/java/org/apache/activemq/artemis/core/persistence/impl/journal/AbstractJournalStorageManager.java b/artemis-server/src/main/java/org/apache/activemq/artemis/core/persistence/impl/journal/AbstractJournalStorageManager.java
index d3db9e5..f757f4b 100644
--- a/artemis-server/src/main/java/org/apache/activemq/artemis/core/persistence/impl/journal/AbstractJournalStorageManager.java
+++ b/artemis-server/src/main/java/org/apache/activemq/artemis/core/persistence/impl/journal/AbstractJournalStorageManager.java
@@ -1241,12 +1241,9 @@ public abstract class AbstractJournalStorageManager extends CriticalComponentImp
 
       readLock();
       try {
-
          if (update) {
-            System.out.println("Update " + binding.getID());
             bindingsJournal.appendUpdateRecordTransactional(tx, binding.getID(), JournalRecordIds.QUEUE_BINDING_RECORD, bindingEncoding);
          } else {
-            System.out.println("Adding " + binding.getID());
             bindingsJournal.appendAddRecordTransactional(tx, binding.getID(), JournalRecordIds.QUEUE_BINDING_RECORD, bindingEncoding);
          }
       } finally {