fixed CS issue
Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/109836fc Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/109836fc Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/109836fc Branch: refs/heads/camel-2.12.x Commit: 109836fc6470bf1a82b99ece99493d8848f91c9c Parents: fd4dfe4 Author: cmueller <cmuel...@apache.org> Authored: Sun Feb 9 22:55:15 2014 +0100 Committer: cmueller <cmuel...@apache.org> Committed: Sun Feb 9 23:26:03 2014 +0100 ---------------------------------------------------------------------- .../camel/dataformat/xmlsecurity/XMLSecurityDataFormat.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/109836fc/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 c73ff41..75c20f8 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,12 +40,11 @@ import javax.crypto.spec.DESedeKeySpec; import javax.crypto.spec.SecretKeySpec; import javax.xml.transform.dom.DOMSource; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; import org.w3c.dom.Document; import org.w3c.dom.Element; import org.w3c.dom.Node; import org.w3c.dom.NodeList; + import org.apache.camel.CamelContext; import org.apache.camel.CamelContextAware; import org.apache.camel.Exchange; @@ -62,7 +61,8 @@ import org.apache.xml.security.keys.KeyInfo; import org.apache.xml.security.utils.Constants; import org.apache.xml.security.utils.EncryptionConstants; import org.apache.xml.security.utils.XMLUtils; - +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; public class XMLSecurityDataFormat implements DataFormat, CamelContextAware {