You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2019/08/06 05:09:11 UTC

[camel] 01/03: CAMEL-7550: Polished

This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 6a34f2948af6578a302e68ce957f0502a6bc9335
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Mon Aug 5 18:27:23 2019 +0200

    CAMEL-7550: Polished
---
 .../src/main/java/org/apache/camel/component/jpa/QueryFactory.java     | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/components/camel-jpa/src/main/java/org/apache/camel/component/jpa/QueryFactory.java b/components/camel-jpa/src/main/java/org/apache/camel/component/jpa/QueryFactory.java
index 2de19ca..1dbf2c7 100644
--- a/components/camel-jpa/src/main/java/org/apache/camel/component/jpa/QueryFactory.java
+++ b/components/camel-jpa/src/main/java/org/apache/camel/component/jpa/QueryFactory.java
@@ -23,10 +23,11 @@ import javax.persistence.Query;
  * A Strategy to create a query to search for objects in a database
  */
 public interface QueryFactory {
+
     /**
      * Creates a new query to find objects to be processed
      *
-     * @param entityManager
+     * @param entityManager the enity manager
      * @return the query configured with any parameters etc
      */
     Query createQuery(EntityManager entityManager);