You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@activemq.apache.org by "rufei xing (Jira)" <ji...@apache.org> on 2021/08/06 01:32:00 UTC

[jira] [Created] (AMQ-8350) ActiveMQMessage.getStringProperty() should exchange equals method call objects

rufei xing created AMQ-8350:
-------------------------------

             Summary: ActiveMQMessage.getStringProperty() should exchange equals method call objects
                 Key: AMQ-8350
                 URL: https://issues.apache.org/jira/browse/AMQ-8350
             Project: ActiveMQ
          Issue Type: Improvement
          Components: Broker
            Reporter: rufei xing


ActiveMQMessage.getStringProperty() should exchange equals method call objects

 
{code:java}
if (name.equals("JMSXUserID")) {
    value = getUserID();
    if (value == null) {
        value = getObjectProperty(name);
    }
} else {
    value = getObjectProperty(name);
}
if (value == null) {
    return null;
}
{code}
 



--
This message was sent by Atlassian Jira
(v8.3.4#803005)