This is an automated email from the ASF dual-hosted git repository. aldettinger 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 954d875 CS fixes 954d875 is described below commit 954d875299032e79ad110a441f2a3a2ab429c19a Author: aldettinger <aldettin...@gmail.com> AuthorDate: Thu Aug 2 21:15:30 2018 +0200 CS fixes --- .../src/main/java/sample/camel/MyCamelApplication.java | 1 + .../src/main/java/sample/camel/MyCamelRouter.java | 12 ++++++------ 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/examples/camel-example-fhir-spring-boot/src/main/java/sample/camel/MyCamelApplication.java b/examples/camel-example-fhir-spring-boot/src/main/java/sample/camel/MyCamelApplication.java index 36020f2..6efd47f 100644 --- a/examples/camel-example-fhir-spring-boot/src/main/java/sample/camel/MyCamelApplication.java +++ b/examples/camel-example-fhir-spring-boot/src/main/java/sample/camel/MyCamelApplication.java @@ -19,6 +19,7 @@ package sample.camel; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; +//CHECKSTYLE:OFF /** * A sample Spring Boot application that starts the Camel routes. */ diff --git a/examples/camel-example-fhir-spring-boot/src/main/java/sample/camel/MyCamelRouter.java b/examples/camel-example-fhir-spring-boot/src/main/java/sample/camel/MyCamelRouter.java index 25c9aa1..1bdf3bb 100644 --- a/examples/camel-example-fhir-spring-boot/src/main/java/sample/camel/MyCamelRouter.java +++ b/examples/camel-example-fhir-spring-boot/src/main/java/sample/camel/MyCamelRouter.java @@ -16,16 +16,16 @@ */ package sample.camel; -import org.apache.camel.builder.RouteBuilder; -import org.apache.camel.LoggingLevel; -import org.apache.http.ProtocolException; -import org.hl7.fhir.dstu3.model.Patient; -import org.springframework.stereotype.Component; - import ca.uhn.hl7v2.HL7Exception; import ca.uhn.hl7v2.model.v24.message.ORU_R01; import ca.uhn.hl7v2.model.v24.segment.PID; +import org.apache.camel.LoggingLevel; +import org.apache.camel.builder.RouteBuilder; +import org.apache.http.ProtocolException; + +import org.hl7.fhir.dstu3.model.Patient; +import org.springframework.stereotype.Component; /** * A simple Camel route that triggers from a timer and calls a bean and prints to system out.