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 1f44fd196c3cebf78fc56ed3d5098d3a6f9a4558
Author: Otavio Rodolfo Piske <[email protected]>
AuthorDate: Sat Mar 28 13:37:43 2026 +0000

    (chores): fix SonarCloud S5993 in camel-aws2-timestream
    
    Change public constructors of abstract classes to protected.
    
    Claude Code on behalf of Otavio R. Piske
    
    Co-Authored-By: Claude Sonnet 4.6 <[email protected]>
---
 .../camel/component/aws2/timestream/Timestream2AbstractEndpoint.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/components/camel-aws/camel-aws2-timestream/src/main/java/org/apache/camel/component/aws2/timestream/Timestream2AbstractEndpoint.java
 
b/components/camel-aws/camel-aws2-timestream/src/main/java/org/apache/camel/component/aws2/timestream/Timestream2AbstractEndpoint.java
index 5d3c2d4d039b..ec86d781bd74 100644
--- 
a/components/camel-aws/camel-aws2-timestream/src/main/java/org/apache/camel/component/aws2/timestream/Timestream2AbstractEndpoint.java
+++ 
b/components/camel-aws/camel-aws2-timestream/src/main/java/org/apache/camel/component/aws2/timestream/Timestream2AbstractEndpoint.java
@@ -30,7 +30,7 @@ public abstract class Timestream2AbstractEndpoint extends 
DefaultEndpoint {
     @UriParam
     private Timestream2Configuration configuration;
 
-    public Timestream2AbstractEndpoint(String uri, Component component, 
Timestream2Configuration configuration) {
+    protected Timestream2AbstractEndpoint(String uri, Component component, 
Timestream2Configuration configuration) {
         super(uri, component);
         this.configuration = configuration;
     }

Reply via email to