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 2013/07/03 03:59:32 UTC

[3/3] git commit: Fixed the CS error of camel-jpa

Fixed the CS error of camel-jpa


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

Branch: refs/heads/master
Commit: d733a5d4c6c172d0cf67ff4e8db3b83b360537c5
Parents: af357f0
Author: Willem Jiang <ni...@apache.org>
Authored: Wed Jul 3 09:57:00 2013 +0800
Committer: Willem Jiang <ni...@apache.org>
Committed: Wed Jul 3 09:57:00 2013 +0800

----------------------------------------------------------------------
 .../src/test/java/org/apache/camel/examples/Customer.java         | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/d733a5d4/components/camel-jpa/src/test/java/org/apache/camel/examples/Customer.java
----------------------------------------------------------------------
diff --git a/components/camel-jpa/src/test/java/org/apache/camel/examples/Customer.java b/components/camel-jpa/src/test/java/org/apache/camel/examples/Customer.java
index c5f50a6..83a120e 100644
--- a/components/camel-jpa/src/test/java/org/apache/camel/examples/Customer.java
+++ b/components/camel-jpa/src/test/java/org/apache/camel/examples/Customer.java
@@ -27,7 +27,8 @@ import javax.persistence.OneToOne;
  * @version 
  */
 @Entity
-@NamedQuery(name="findAllCustomersWithName", query = "SELECT c FROM Customer c WHERE c.name LIKE :custName ")
+@NamedQuery(name = "findAllCustomersWithName",
+query = "SELECT c FROM Customer c WHERE c.name LIKE :custName ")
 public class Customer {
     
     @Id