#719 - Remove deprecated Query.includeSoftDeletes() ... migrate to setIncludeSoftDeletes()

This commit is contained in:
Robin Bygrave
2016-05-20 23:08:28 +12:00
parent b2a3f0c99b
commit 7268890332
2 changed files with 0 additions and 11 deletions
-6
View File
@@ -301,12 +301,6 @@ public interface Query<T> {
*/
Query<T> asDraft();
/**
* Deprecated in favour of setIncludeSoftDeletes().
*/
@Deprecated
Query<T> includeSoftDeletes();
/**
* Cancel the query execution if supported by the underlying database and
* driver.
@@ -313,11 +313,6 @@ public class DefaultOrmQuery<T> implements SpiQuery<T> {
return this;
}
@Override
public Query<T> includeSoftDeletes() {
return setIncludeSoftDeletes();
}
@Override
public Query<T> setIncludeSoftDeletes() {
this.temporalMode = TemporalMode.SOFT_DELETED;