Skip to content

Commit

Permalink
JPA #441 - Pull getParameters() up from CriteriaQuery to CommonAbstra…
Browse files Browse the repository at this point in the history
…ctCriteria

Signed-off-by: Tomáš Kraus <tomas.kraus@oracle.com>
  • Loading branch information
Tomas-Kraus authored and lukasj committed Sep 20, 2023
1 parent ed06d2d commit c89e4b5
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,7 @@ public void addParameter(ParameterExpression<?> parameter) {
*
* @return the query parameters
*/
@Override
public Set<ParameterExpression<?>> getParameters() {
if (this.parameters == null) {
this.parameters = new HashSet<ParameterExpression<?>>();
Expand Down

0 comments on commit c89e4b5

Please sign in to comment.