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 86a1757 Camel-Microprofile-health: Fixed CS 86a1757 is described below commit 86a17573a14c4d4ea530abc7a022e2b99e2d3f6b Author: Andrea Cosentino <anco...@gmail.com> AuthorDate: Mon Jun 1 15:59:21 2020 +0200 Camel-Microprofile-health: Fixed CS --- .../camel/microprofile/health/CamelMicroProfileContextCheck.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/components/camel-microprofile-health/src/main/java/org/apache/camel/microprofile/health/CamelMicroProfileContextCheck.java b/components/camel-microprofile-health/src/main/java/org/apache/camel/microprofile/health/CamelMicroProfileContextCheck.java index 1e754a7..77eced5 100644 --- a/components/camel-microprofile-health/src/main/java/org/apache/camel/microprofile/health/CamelMicroProfileContextCheck.java +++ b/components/camel-microprofile-health/src/main/java/org/apache/camel/microprofile/health/CamelMicroProfileContextCheck.java @@ -16,9 +16,10 @@ */ package org.apache.camel.microprofile.health; +import java.util.Map; + import javax.annotation.PostConstruct; import javax.inject.Inject; -import java.util.Map; import org.apache.camel.CamelContext; import org.apache.camel.CamelContextAware;