Skip to content

Commit

Permalink
rename a parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
gavinking authored and lukasj committed Sep 13, 2023
1 parent a67ce85 commit 092cf2a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions api/src/main/java/jakarta/persistence/EntityManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -975,13 +975,13 @@ void refresh(Object entity,
* Create an instance of {@link TypedQuery} for executing a
* criteria query, which may be a union or intersection of
* top-level queries.
* @param criteriaQuery a criteria query object
* @param selectQuery a criteria query object
* @return the new query instance
* @throws IllegalArgumentException if the criteria query is
* found to be invalid
* @since 3.2
*/
<T> TypedQuery<T> createQuery(CriteriaSelect<T> criteriaQuery);
<T> TypedQuery<T> createQuery(CriteriaSelect<T> selectQuery);

/**
* Create an instance of {@link Query} for executing a criteria
Expand Down

0 comments on commit 092cf2a

Please sign in to comment.