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 2014/06/22 14:04:24 UTC

[3/4] git commit: [Minor] Fix CS errors in camel-jpa

[Minor] Fix CS errors in camel-jpa

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/50cacb9e
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/50cacb9e
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/50cacb9e

Branch: refs/heads/master
Commit: 50cacb9eabeae492207a6442d3841a5804d5ed37
Parents: 104478f
Author: Gregor Zurowski <gr...@zurowski.org>
Authored: Sun Jun 22 07:59:18 2014 -0400
Committer: Gregor Zurowski <gr...@zurowski.org>
Committed: Sun Jun 22 07:59:18 2014 -0400

----------------------------------------------------------------------
 .../jpa/JpaComponentConfigurationAndDocumentationTest.java       | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/50cacb9e/components/camel-jpa/src/test/java/org/apache/camel/component/jpa/JpaComponentConfigurationAndDocumentationTest.java
----------------------------------------------------------------------
diff --git a/components/camel-jpa/src/test/java/org/apache/camel/component/jpa/JpaComponentConfigurationAndDocumentationTest.java b/components/camel-jpa/src/test/java/org/apache/camel/component/jpa/JpaComponentConfigurationAndDocumentationTest.java
index eaae0b3..5ff9760 100644
--- a/components/camel-jpa/src/test/java/org/apache/camel/component/jpa/JpaComponentConfigurationAndDocumentationTest.java
+++ b/components/camel-jpa/src/test/java/org/apache/camel/component/jpa/JpaComponentConfigurationAndDocumentationTest.java
@@ -33,8 +33,8 @@ public class JpaComponentConfigurationAndDocumentationTest extends CamelTestSupp
     @Test
     public void testComponentConfiguration() throws Exception {
         JpaComponent comp = context.getComponent("jpa", JpaComponent.class);
-        EndpointConfiguration conf = comp.createConfiguration("jpa://org.apache.camel.examples.SendEmail" +
-                "?usePersist=true&persistenceUnit=custom");
+        EndpointConfiguration conf = comp.createConfiguration("jpa://org.apache.camel.examples.SendEmail"
+                + "?usePersist=true&persistenceUnit=custom");
 
         assertEquals("true", conf.getParameter("usePersist"));
         assertEquals("custom", conf.getParameter("persistenceUnit"));