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
commit e0d5bf0891b9fec3543250df2f03238bfe8a3677 Author: Andrea Cosentino <anco...@gmail.com> AuthorDate: Fri Feb 9 08:02:10 2018 +0100 CAMEL-12248 - Fixed CS --- .../apache/camel/component/milo/server/MiloServerComponent.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/components/camel-milo/src/main/java/org/apache/camel/component/milo/server/MiloServerComponent.java b/components/camel-milo/src/main/java/org/apache/camel/component/milo/server/MiloServerComponent.java index 0516788..62665a1 100644 --- a/components/camel-milo/src/main/java/org/apache/camel/component/milo/server/MiloServerComponent.java +++ b/components/camel-milo/src/main/java/org/apache/camel/component/milo/server/MiloServerComponent.java @@ -103,10 +103,10 @@ public class MiloServerComponent extends DefaultComponent { throw new UaException(StatusCodes.Bad_CertificateUseNotAllowed); } - @Override - public void verifyTrustChain(List<X509Certificate> certificateChain) throws UaException { - throw new UaException(StatusCodes.Bad_CertificateUseNotAllowed); - } + @Override + public void verifyTrustChain(List<X509Certificate> certificateChain) throws UaException { + throw new UaException(StatusCodes.Bad_CertificateUseNotAllowed); + } } private String namespaceUri = DEFAULT_NAMESPACE_URI; -- To stop receiving notification emails like this one, please contact acosent...@apache.org.