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 24f38f145ac822948d8a481b7fd340bb8a9e9b86
Author: Otavio Rodolfo Piske <[email protected]>
AuthorDate: Sat Jun 17 09:34:22 2023 +0200

    (chores) camel-disruptor: align visibility of the constructor with the one 
declared in the class
---
 .../apache/camel/component/disruptor/AbstractSynchronizedExchange.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/components/camel-disruptor/src/main/java/org/apache/camel/component/disruptor/AbstractSynchronizedExchange.java
 
b/components/camel-disruptor/src/main/java/org/apache/camel/component/disruptor/AbstractSynchronizedExchange.java
index f824cbfb312..059920339dc 100644
--- 
a/components/camel-disruptor/src/main/java/org/apache/camel/component/disruptor/AbstractSynchronizedExchange.java
+++ 
b/components/camel-disruptor/src/main/java/org/apache/camel/component/disruptor/AbstractSynchronizedExchange.java
@@ -29,7 +29,7 @@ public abstract class AbstractSynchronizedExchange implements 
SynchronizedExchan
     protected final List<Synchronization> synchronizations;
     private final Exchange exchange;
 
-    public AbstractSynchronizedExchange(Exchange exchange) {
+    protected AbstractSynchronizedExchange(Exchange exchange) {
         this.exchange = exchange;
         synchronizations = 
exchange.getExchangeExtension().handoverCompletions();
     }

Reply via email to