#627 - Rename Query.includeSoftDeletes() to Query.setIncludeSoftDeletes()

This commit is contained in:
Robin Bygrave
2016-03-29 16:38:09 +13:00
parent df95f4759b
commit de6ba31996
9 changed files with 36 additions and 9 deletions
@@ -729,7 +729,7 @@ public final class DefaultPersister implements Persister {
q.select(sb.toString());
if (!softDelete) {
// hard delete so we want this query to include logically deleted rows (if any)
q.includeSoftDeletes();
q.setIncludeSoftDeletes();
}
return q;
}