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 93760b71a79f3fd7cf164d4e07a7127120fc1a58 Author: Otavio Rodolfo Piske <[email protected]> AuthorDate: Sat Jun 17 09:41:24 2023 +0200 (chores) camel-hyperledger-aries: align visibility of the constructor with the one declared in the class --- .../apache/camel/component/aries/handler/AbstractServiceHandler.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/camel-hyperledger-aries/src/main/java/org/apache/camel/component/aries/handler/AbstractServiceHandler.java b/components/camel-hyperledger-aries/src/main/java/org/apache/camel/component/aries/handler/AbstractServiceHandler.java index 7e0f0b2cd55..4f1e45abc5d 100644 --- a/components/camel-hyperledger-aries/src/main/java/org/apache/camel/component/aries/handler/AbstractServiceHandler.java +++ b/components/camel-hyperledger-aries/src/main/java/org/apache/camel/component/aries/handler/AbstractServiceHandler.java @@ -39,7 +39,7 @@ public abstract class AbstractServiceHandler implements ServiceHandler { protected final HyperledgerAriesEndpoint endpoint; - public AbstractServiceHandler(HyperledgerAriesEndpoint endpoint) { + protected AbstractServiceHandler(HyperledgerAriesEndpoint endpoint) { this.endpoint = endpoint; }
