DestinationView.browseMessages(String) must not call OpenTypeSupport.convert()
------------------------------------------------------------------------------
Key: AMQ-3023
URL: https://issues.apache.org/activemq/browse/AMQ-3023
Project: ActiveMQ
Issue Type: Bug
Components: Broker
Affects Versions: 5.3.2
Environment: ActiveMQ 5.3.2
Reporter: Michael Chen
Method DestinationView.browseMessages(String) should return a homogeneous List
of Message(s). Therefore, line 196 of DestinationView.java must not call
OpenTypeSupport.convert(), and should be changed:
From:
{quote}
answer.add(OpenTypeSupport.convert(message));
{quote}
To:
{quote}
answer.add(message);
{quote}
Just like line 200 that follows.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.