You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by gz...@apache.org on 2015/11/08 13:14:07 UTC

[2/3] camel git commit: Fix Checkstyle issues

Fix Checkstyle issues

Signed-off-by: Gregor Zurowski <gr...@zurowski.org>

Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/231a24d5
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/231a24d5
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/231a24d5

Branch: refs/heads/camel-2.16.x
Commit: 231a24d56f284007fb991dc33aecc6d3edeaaf56
Parents: 805486b
Author: Gregor Zurowski <gr...@zurowski.org>
Authored: Sat Oct 17 21:39:08 2015 +0200
Committer: Gregor Zurowski <gr...@zurowski.org>
Committed: Sun Nov 8 13:11:20 2015 +0100

----------------------------------------------------------------------
 .../camel/dataformat/xmlsecurity/XMLSecurityDataFormat.java      | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/231a24d5/components/camel-xmlsecurity/src/main/java/org/apache/camel/dataformat/xmlsecurity/XMLSecurityDataFormat.java
----------------------------------------------------------------------
diff --git a/components/camel-xmlsecurity/src/main/java/org/apache/camel/dataformat/xmlsecurity/XMLSecurityDataFormat.java b/components/camel-xmlsecurity/src/main/java/org/apache/camel/dataformat/xmlsecurity/XMLSecurityDataFormat.java
index 25da8f4..1261df2 100755
--- a/components/camel-xmlsecurity/src/main/java/org/apache/camel/dataformat/xmlsecurity/XMLSecurityDataFormat.java
+++ b/components/camel-xmlsecurity/src/main/java/org/apache/camel/dataformat/xmlsecurity/XMLSecurityDataFormat.java
@@ -40,8 +40,6 @@ import javax.crypto.spec.DESedeKeySpec;
 import javax.crypto.spec.SecretKeySpec;
 import javax.xml.transform.dom.DOMSource;
 
-import org.apache.camel.spi.DataFormatName;
-import org.apache.camel.support.ServiceSupport;
 import org.w3c.dom.Document;
 import org.w3c.dom.Element;
 import org.w3c.dom.Node;
@@ -52,6 +50,8 @@ import org.apache.camel.Exchange;
 import org.apache.camel.builder.xml.DefaultNamespaceContext;
 import org.apache.camel.builder.xml.XPathBuilder;
 import org.apache.camel.spi.DataFormat;
+import org.apache.camel.spi.DataFormatName;
+import org.apache.camel.support.ServiceSupport;
 import org.apache.camel.util.IOHelper;
 import org.apache.camel.util.jsse.KeyStoreParameters;
 import org.apache.xml.security.encryption.EncryptedData;