Skip to content

Commit

Permalink
Get rid of a raw type
Browse files Browse the repository at this point in the history
  • Loading branch information
FroMage committed Oct 18, 2024
1 parent d395046 commit 44a855e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ private CommonPanacheQueryImpl(CommonPanacheQueryImpl<?> previousQuery, String n
public <T> CommonPanacheQueryImpl<T> project(Class<T> type) {
String selectQuery = query;
if (PanacheJpaUtil.isNamedQuery(query)) {
SelectionQuery q = session.createNamedSelectionQuery(query.substring(1));
SelectionQuery<?> q = session.createNamedSelectionQuery(query.substring(1));
selectQuery = getQueryString(q);
}

Expand Down

0 comments on commit 44a855e

Please sign in to comment.