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

camel git commit: Fixed the CS error

Repository: camel
Updated Branches:
  refs/heads/camel-2.14.x 7e6168a49 -> 87c6ec54a


Fixed the CS error


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

Branch: refs/heads/camel-2.14.x
Commit: 87c6ec54a73f7c2462fb3cc85c5d08e180eabecc
Parents: 7e6168a
Author: Willem Jiang <wi...@gmail.com>
Authored: Tue Mar 3 09:01:03 2015 +0000
Committer: Willem Jiang <wi...@gmail.com>
Committed: Tue Mar 3 09:01:03 2015 +0000

----------------------------------------------------------------------
 .../main/java/org/apache/camel/jsonpath/JsonPathEngine.java    | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/87c6ec54/components/camel-jsonpath/src/main/java/org/apache/camel/jsonpath/JsonPathEngine.java
----------------------------------------------------------------------
diff --git a/components/camel-jsonpath/src/main/java/org/apache/camel/jsonpath/JsonPathEngine.java b/components/camel-jsonpath/src/main/java/org/apache/camel/jsonpath/JsonPathEngine.java
index c0fb720..6d52226 100644
--- a/components/camel-jsonpath/src/main/java/org/apache/camel/jsonpath/JsonPathEngine.java
+++ b/components/camel-jsonpath/src/main/java/org/apache/camel/jsonpath/JsonPathEngine.java
@@ -22,6 +22,9 @@ import java.io.InputStream;
 import java.net.URL;
 import java.nio.charset.Charset;
 
+import com.jayway.jsonpath.Configuration;
+import com.jayway.jsonpath.JsonPath;
+
 import org.apache.camel.Exchange;
 import org.apache.camel.InvalidPayloadException;
 import org.apache.camel.NoTypeConversionAvailableException;
@@ -29,9 +32,6 @@ import org.apache.camel.WrappedFile;
 import org.apache.camel.component.file.GenericFile;
 import org.apache.camel.component.file.GenericFileConverter;
 
-import com.jayway.jsonpath.Configuration;
-import com.jayway.jsonpath.JsonPath;
-
 public class JsonPathEngine {
 
     private final JsonPath path;