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

jpoth 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 4d33c77  Fix CS
4d33c77 is described below

commit 4d33c77a48c4c2c3f3b5ad914b735f27f2488a77
Author: jpoth <[email protected]>
AuthorDate: Wed Jul 18 13:17:15 2018 +0200

    Fix CS
---
 .../src/main/java/org/apache/camel/example/fhir/osgi/FhirRoute.java  | 3 ++-
 .../src/test/java/org/apache/camel/example/fhir/osgi/FhirOsgiIT.java | 2 +-
 .../test/java/org/apache/camel/example/fhir/osgi/PaxExamOptions.java | 5 ++---
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git 
a/examples/camel-example-fhir-osgi/src/main/java/org/apache/camel/example/fhir/osgi/FhirRoute.java
 
b/examples/camel-example-fhir-osgi/src/main/java/org/apache/camel/example/fhir/osgi/FhirRoute.java
index eef2a9f..2ac30de 100644
--- 
a/examples/camel-example-fhir-osgi/src/main/java/org/apache/camel/example/fhir/osgi/FhirRoute.java
+++ 
b/examples/camel-example-fhir-osgi/src/main/java/org/apache/camel/example/fhir/osgi/FhirRoute.java
@@ -31,7 +31,8 @@ public class FhirRoute extends RouteBuilder {
         from("file:{{input}}").routeId("fhir-example-osgi")
             .onException(ProtocolException.class)
                 .handled(true)
-                .log(LoggingLevel.ERROR, "Error connecting to FHIR server with 
URL:{{serverUrl}}, please check the 
org.apache.camel.example.fhir.osgi.configuration.cfg configuration file 
${exception.message}")
+                .log(LoggingLevel.ERROR, "Error connecting to FHIR server with 
URL:{{serverUrl}}, "
+                        + "please check the 
org.apache.camel.example.fhir.osgi.configuration.cfg configuration file 
${exception.message}")
                 .end()
             .onException(HL7Exception.class)
                 .handled(true)
diff --git 
a/examples/camel-example-fhir-osgi/src/test/java/org/apache/camel/example/fhir/osgi/FhirOsgiIT.java
 
b/examples/camel-example-fhir-osgi/src/test/java/org/apache/camel/example/fhir/osgi/FhirOsgiIT.java
index 2742a44..32cb08c 100644
--- 
a/examples/camel-example-fhir-osgi/src/test/java/org/apache/camel/example/fhir/osgi/FhirOsgiIT.java
+++ 
b/examples/camel-example-fhir-osgi/src/test/java/org/apache/camel/example/fhir/osgi/FhirOsgiIT.java
@@ -16,11 +16,11 @@
  */
 package org.apache.camel.example.fhir.osgi;
 
-import javax.inject.Inject;
 import java.io.File;
 import java.io.IOException;
 import java.nio.file.Files;
 import java.nio.file.Paths;
+import javax.inject.Inject;
 import org.apache.camel.CamelContext;
 import org.apache.camel.ServiceStatus;
 import org.junit.Test;
diff --git 
a/examples/camel-example-fhir-osgi/src/test/java/org/apache/camel/example/fhir/osgi/PaxExamOptions.java
 
b/examples/camel-example-fhir-osgi/src/test/java/org/apache/camel/example/fhir/osgi/PaxExamOptions.java
index daae9cb..a466bed 100644
--- 
a/examples/camel-example-fhir-osgi/src/test/java/org/apache/camel/example/fhir/osgi/PaxExamOptions.java
+++ 
b/examples/camel-example-fhir-osgi/src/test/java/org/apache/camel/example/fhir/osgi/PaxExamOptions.java
@@ -56,9 +56,8 @@ public enum PaxExamOptions {
                 .type("xml")
                 .classifier("features")
                 .versionAsInProject(),
-            "camel-blueprint","camel-fhir", "camel-hl7")
-    ),
-    ;
+                "camel-blueprint", "camel-fhir", "camel-hl7")
+    );
 
     private final Option[] options;
 

Reply via email to