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 1f6dde3 Fixed CS for Camel-Undertow 1f6dde3 is described below commit 1f6dde3d6dfc7d7980bf774ac9d98e8db71a2d9b Author: Andrea Cosentino <anco...@gmail.com> AuthorDate: Tue Aug 20 12:04:17 2019 +0200 Fixed CS for Camel-Undertow --- .../java/org/apache/camel/component/undertow/MapIdentityManager.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/camel-undertow/src/test/java/org/apache/camel/component/undertow/MapIdentityManager.java b/components/camel-undertow/src/test/java/org/apache/camel/component/undertow/MapIdentityManager.java index db110b7..4580e31 100644 --- a/components/camel-undertow/src/test/java/org/apache/camel/component/undertow/MapIdentityManager.java +++ b/components/camel-undertow/src/test/java/org/apache/camel/component/undertow/MapIdentityManager.java @@ -16,8 +16,6 @@ */ package org.apache.camel.component.undertow; -import static java.nio.charset.StandardCharsets.UTF_8; - import java.security.MessageDigest; import java.security.NoSuchAlgorithmException; import java.security.Principal; @@ -26,6 +24,8 @@ import java.util.Collections; import java.util.Map; import java.util.Set; +import static java.nio.charset.StandardCharsets.UTF_8; + import io.undertow.security.idm.Account; import io.undertow.security.idm.Credential; import io.undertow.security.idm.DigestCredential;