This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 7dc37bc18adcf57b2655fc6ae9958e54ca699067
Author: Andrea Cosentino <[email protected]>
AuthorDate: Tue Feb 16 11:39:46 2021 +0100

    CAMEL-16218 - Added NOSONAR comment in camel-jms
---
 .../java/org/apache/camel/component/jms/reply/QueueReplyManager.java     | 1 +
 1 file changed, 1 insertion(+)

diff --git 
a/components/camel-jms/src/main/java/org/apache/camel/component/jms/reply/QueueReplyManager.java
 
b/components/camel-jms/src/main/java/org/apache/camel/component/jms/reply/QueueReplyManager.java
index aa05326..0124a29 100644
--- 
a/components/camel-jms/src/main/java/org/apache/camel/component/jms/reply/QueueReplyManager.java
+++ 
b/components/camel-jms/src/main/java/org/apache/camel/component/jms/reply/QueueReplyManager.java
@@ -135,6 +135,7 @@ public class QueueReplyManager extends ReplyManagerSupport {
             String replyToSelectorName = 
endpoint.getReplyToDestinationSelectorName();
             if (replyToSelectorName != null) {
                 // create a random selector value we will use for the reply 
queue
+                // NOSONAR
                 replyToSelectorValue = "ID:" + new BigInteger(24 * 8, new 
Random()).toString(16);
                 String fixedMessageSelector = replyToSelectorName + "='" + 
replyToSelectorValue + "'";
                 answer = new SharedQueueMessageListenerContainer(endpoint, 
fixedMessageSelector);

Reply via email to