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 790b4c0 Camel-Microprofile-health: Fixed CS 790b4c0 is described below commit 790b4c0ef480e723b79e458d7cf746347c8b0899 Author: Andrea Cosentino <anco...@gmail.com> AuthorDate: Wed Jun 3 12:19:56 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 25e12e8..aee7e38 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 javax.inject.Inject; import java.util.Map; +import javax.inject.Inject; + import org.apache.camel.CamelContext; import org.apache.camel.CamelContextAware; import org.apache.camel.health.HealthCheck.Result;