You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2019/12/03 11:55:23 UTC

[camel] branch master updated: CAMEL-14246 - Camel-SQL: Relax the modifier for datasource setter by removing final

This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/master by this push:
     new 1752a34  CAMEL-14246 - Camel-SQL: Relax the modifier for datasource setter by removing final
1752a34 is described below

commit 1752a34914fff59218818d22970bd89fd4802e2d
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue Dec 3 12:38:30 2019 +0100

    CAMEL-14246 - Camel-SQL: Relax the modifier for datasource setter by removing final
---
 .../camel/processor/aggregate/jdbc/JdbcAggregationRepository.java       | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/components/camel-sql/src/main/java/org/apache/camel/processor/aggregate/jdbc/JdbcAggregationRepository.java b/components/camel-sql/src/main/java/org/apache/camel/processor/aggregate/jdbc/JdbcAggregationRepository.java
index d8eacdf..2ccfbfe 100644
--- a/components/camel-sql/src/main/java/org/apache/camel/processor/aggregate/jdbc/JdbcAggregationRepository.java
+++ b/components/camel-sql/src/main/java/org/apache/camel/processor/aggregate/jdbc/JdbcAggregationRepository.java
@@ -120,7 +120,7 @@ public class JdbcAggregationRepository extends ServiceSupport implements Recover
     /**
      * Sets the DataSource to use for accessing the database
      */
-    public final void setDataSource(DataSource dataSource) {
+    public void setDataSource(DataSource dataSource) {
         this.dataSource = dataSource;
 
         jdbcTemplate = new JdbcTemplate(dataSource);