You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by jb...@apache.org on 2018/10/25 15:05:48 UTC

activemq-artemis git commit: ARTEMIS-2148 Fixing typo where getDoubleProperty marks body as changed

Repository: activemq-artemis
Updated Branches:
  refs/heads/2.6.x 58f617b3c -> 7ca84772f


ARTEMIS-2148 Fixing typo where getDoubleProperty marks body as changed

(cherry picked from commit 04e278cd155de0e88ab1bea659da1a2b71e96c39)


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

Branch: refs/heads/2.6.x
Commit: 7ca84772f2f4e643ad599a4253e7cb401ae75614
Parents: 58f617b
Author: Clebert Suconic <cl...@apache.org>
Authored: Thu Oct 25 10:41:02 2018 -0400
Committer: Justin Bertram <jb...@apache.org>
Committed: Thu Oct 25 10:05:34 2018 -0500

----------------------------------------------------------------------
 .../org/apache/activemq/artemis/core/message/impl/CoreMessage.java  | 1 -
 1 file changed, 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/7ca84772/artemis-core-client/src/main/java/org/apache/activemq/artemis/core/message/impl/CoreMessage.java
----------------------------------------------------------------------
diff --git a/artemis-core-client/src/main/java/org/apache/activemq/artemis/core/message/impl/CoreMessage.java b/artemis-core-client/src/main/java/org/apache/activemq/artemis/core/message/impl/CoreMessage.java
index 2052991..134ee5e 100644
--- a/artemis-core-client/src/main/java/org/apache/activemq/artemis/core/message/impl/CoreMessage.java
+++ b/artemis-core-client/src/main/java/org/apache/activemq/artemis/core/message/impl/CoreMessage.java
@@ -985,7 +985,6 @@ public class CoreMessage extends RefCountMessage implements ICoreMessage {
 
    @Override
    public Double getDoubleProperty(final SimpleString key) throws ActiveMQPropertyConversionException {
-      messageChanged();
       checkProperties();
       return properties.getDoubleProperty(key);
    }