#2275 - Change Query<?> to Query<T> on ExtendedServer exists() method

This commit is contained in:
rbygrave
2021-07-28 17:23:37 +12:00
parent 21cd74d0ca
commit 4aef0ad459
4 changed files with 22 additions and 24 deletions
@@ -67,7 +67,7 @@ public interface ExtendedServer {
*
* @return True if the query finds a matching row in the database
*/
<T> boolean exists(Query<?> ormQuery, Transaction transaction);
<T> boolean exists(Query<T> ormQuery, Transaction transaction);
/**
* Return the number of 'top level' or 'root' entities this query should return.