File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
hibernate-core/src/main/java/org/hibernate/query/sqm/tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -180,7 +180,8 @@ public SqmPredicate in(Expression<?>... values) {
180
180
181
181
@ Override
182
182
public SqmPredicate in (Collection <?> values ) {
183
- return nodeBuilder ().in ( this , values );
183
+ //noinspection unchecked
184
+ return nodeBuilder ().in ( this , (Collection <T >) values );
184
185
}
185
186
186
187
@ Override
Original file line number Diff line number Diff line change @@ -592,7 +592,8 @@ public SqmInPredicate<?> in(Expression<?>... values) {
592
592
593
593
@ Override
594
594
public SqmInPredicate <?> in (Collection <?> values ) {
595
- return nodeBuilder ().in ( this , values );
595
+ //noinspection unchecked
596
+ return nodeBuilder ().in ( this , (Collection <T >) values );
596
597
}
597
598
598
599
@ Override
You can’t perform that action at this time.
0 commit comments