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
The following commit(s) were added to refs/heads/main by this push: new 67ffd56cd0c (chores) camel-support: adjust unnecessary visibility 67ffd56cd0c is described below commit 67ffd56cd0cd31646bb22e159c68cf7f011f7286 Author: Otavio Rodolfo Piske <angusyo...@gmail.com> AuthorDate: Thu May 11 17:48:57 2023 +0200 (chores) camel-support: adjust unnecessary visibility --- .../java/org/apache/camel/support/component/ApiMethodParser.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/core/camel-support/src/main/java/org/apache/camel/support/component/ApiMethodParser.java b/core/camel-support/src/main/java/org/apache/camel/support/component/ApiMethodParser.java index 113f00a030b..baec02fc33c 100644 --- a/core/camel-support/src/main/java/org/apache/camel/support/component/ApiMethodParser.java +++ b/core/camel-support/src/main/java/org/apache/camel/support/component/ApiMethodParser.java @@ -343,8 +343,8 @@ public abstract class ApiMethodParser<T> { private String uniqueName; - protected ApiMethodModel(String name, Class<?> resultType, List<ApiMethodArg> arguments, Method method, - String description, String signature) { + ApiMethodModel(String name, Class<?> resultType, List<ApiMethodArg> arguments, Method method, + String description, String signature) { this.name = name; this.resultType = resultType; this.arguments = arguments; @@ -353,8 +353,8 @@ public abstract class ApiMethodParser<T> { this.signature = signature; } - protected ApiMethodModel(String uniqueName, String name, Class<?> resultType, List<ApiMethodArg> arguments, - Method method, String description, String signature) { + ApiMethodModel(String uniqueName, String name, Class<?> resultType, List<ApiMethodArg> arguments, + Method method, String description, String signature) { this.name = name; this.uniqueName = uniqueName; this.resultType = resultType;