You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by or...@apache.org on 2023/06/17 12:24:58 UTC

[camel] 14/40: (chores) camel-flink: align visibility of the constructor with the one declared in the class

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 c028df17bb8d6b42f29ab9e01c213d88ead168c5
Author: Otavio Rodolfo Piske <an...@gmail.com>
AuthorDate: Sat Jun 17 09:34:44 2023 +0200

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

diff --git a/components/camel-flink/src/main/java/org/apache/camel/component/flink/ConvertingDataSetCallback.java b/components/camel-flink/src/main/java/org/apache/camel/component/flink/ConvertingDataSetCallback.java
index 730664bf397..3796fcc4265 100644
--- a/components/camel-flink/src/main/java/org/apache/camel/component/flink/ConvertingDataSetCallback.java
+++ b/components/camel-flink/src/main/java/org/apache/camel/component/flink/ConvertingDataSetCallback.java
@@ -27,7 +27,7 @@ public abstract class ConvertingDataSetCallback<T> implements DataSetCallback<T>
 
     private final Class[] payloadTypes;
 
-    public ConvertingDataSetCallback(CamelContext camelContext, Class... payloadTypes) {
+    protected ConvertingDataSetCallback(CamelContext camelContext, Class... payloadTypes) {
         this.camelContext = camelContext;
         this.payloadTypes = payloadTypes;
     }