Add parameter type for Query.Property with DefaultUpdateQuery and TQRootBean

This commit is contained in:
Rob Bygrave
2022-11-09 23:41:42 +13:00
parent 3c8c52ca7f
commit 4a0f8931a0
2 changed files with 3 additions and 3 deletions
@@ -282,7 +282,7 @@ public abstract class TQRootBean<T, R> {
*
* @param properties the list of properties to fetch
*/
public final R select(Query.Property... properties) {
public final R select(Query.Property<?>... properties) {
((SpiQueryFetch) query).selectProperties(properties(properties));
return root;
}