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 2020/03/30 10:56:14 UTC

[camel] branch master updated: Camel-InfluxDB: Fixed CS

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 3114ea7  Camel-InfluxDB: Fixed CS
3114ea7 is described below

commit 3114ea7d77f8ee9bab7d4085f64e65850451b4f9
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Mon Mar 30 12:55:33 2020 +0200

    Camel-InfluxDB: Fixed CS
---
 bom/target-template-pom.xml                                          | 2 +-
 .../camel/component/influxdb/converters/CamelInfluxDbConverters.java | 5 ++++-
 2 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/bom/target-template-pom.xml b/bom/target-template-pom.xml
index 81982c4..d39ef0e 100644
--- a/bom/target-template-pom.xml
+++ b/bom/target-template-pom.xml
@@ -60,4 +60,4 @@
     </plugins>
   </build>
 
-</project>
\ No newline at end of file
+</project>
diff --git a/components/camel-influxdb/src/main/java/org/apache/camel/component/influxdb/converters/CamelInfluxDbConverters.java b/components/camel-influxdb/src/main/java/org/apache/camel/component/influxdb/converters/CamelInfluxDbConverters.java
index 0a1f84d..bca71c4 100644
--- a/components/camel-influxdb/src/main/java/org/apache/camel/component/influxdb/converters/CamelInfluxDbConverters.java
+++ b/components/camel-influxdb/src/main/java/org/apache/camel/component/influxdb/converters/CamelInfluxDbConverters.java
@@ -24,7 +24,10 @@ import org.apache.camel.component.influxdb.InfluxDbConstants;
 import org.influxdb.dto.Point;
 
 @Converter(generateLoader = true)
-public class CamelInfluxDbConverters {
+public final class CamelInfluxDbConverters {
+
+    private CamelInfluxDbConverters() {
+    }
 
     @Converter
     public static Point fromMapToPoint(Map<String, Object> map) {