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 b1d2b4ca533745da9f3326d611fb81efe9cb85af Author: Otavio Rodolfo Piske <[email protected]> AuthorDate: Sat Jun 17 10:00:54 2023 +0200 (chores) camel-jms: align visibility of the constructor with the one declared in the class --- .../java/org/apache/camel/component/jms/reply/ReplyManagerSupport.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/camel-jms/src/main/java/org/apache/camel/component/jms/reply/ReplyManagerSupport.java b/components/camel-jms/src/main/java/org/apache/camel/component/jms/reply/ReplyManagerSupport.java index 6a61371ad87..9a81edc48ea 100644 --- a/components/camel-jms/src/main/java/org/apache/camel/component/jms/reply/ReplyManagerSupport.java +++ b/components/camel-jms/src/main/java/org/apache/camel/component/jms/reply/ReplyManagerSupport.java @@ -64,7 +64,7 @@ public abstract class ReplyManagerSupport extends ServiceSupport implements Repl protected CorrelationTimeoutMap correlation; protected String correlationProperty; - public ReplyManagerSupport(CamelContext camelContext) { + protected ReplyManagerSupport(CamelContext camelContext) { this.camelContext = camelContext; }
