This is an automated email from the ASF dual-hosted git repository. orpiske pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
commit 2097e7a7d04e651400ffb9955a6d92b8409dac13 Author: Otavio Rodolfo Piske <[email protected]> AuthorDate: Sat Mar 28 13:38:43 2026 +0000 (chores): fix SonarCloud S5993 in camel-sjms Change public constructors of abstract classes to protected. Claude Code on behalf of Otavio R. Piske Co-Authored-By: Claude Sonnet 4.6 <[email protected]> --- .../java/org/apache/camel/component/sjms/reply/ReplyManagerSupport.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/camel-sjms/src/main/java/org/apache/camel/component/sjms/reply/ReplyManagerSupport.java b/components/camel-sjms/src/main/java/org/apache/camel/component/sjms/reply/ReplyManagerSupport.java index 1b0b37808c18..3c2603cfb435 100644 --- a/components/camel-sjms/src/main/java/org/apache/camel/component/sjms/reply/ReplyManagerSupport.java +++ b/components/camel-sjms/src/main/java/org/apache/camel/component/sjms/reply/ReplyManagerSupport.java @@ -60,7 +60,7 @@ public abstract class ReplyManagerSupport extends ServiceSupport implements Repl protected final long replyToTimeout = 10000; protected CorrelationTimeoutMap correlation; - public ReplyManagerSupport(CamelContext camelContext) { + protected ReplyManagerSupport(CamelContext camelContext) { this.camelContext = camelContext; }
