Fix issues related to Querydsl 5.0 upgrade.

Remove overridden methods no longer available in public api.

Closes: #3738
This commit is contained in:
Christoph Strobl
2021-07-22 09:03:10 +02:00
parent 4d7ee0e741
commit d2c9b47366
2 changed files with 0 additions and 15 deletions

View File

@@ -177,16 +177,6 @@ public abstract class QuerydslAbstractMongodbQuery<K, Q extends QuerydslAbstract
return serializer.toSort(orderSpecifiers);
}
/**
* Get the actual {@link QueryMixin} delegate.
*
* @return
*/
QueryMixin<Q> getQueryMixin() {
return queryMixin;
}
/**
* Returns the {@literal Mongo Shell} representation of the query. <br />
* The following query

View File

@@ -139,9 +139,4 @@ abstract class SpringDataMongodbQuerySupport<Q extends SpringDataMongodbQuerySup
protected Document createSort(List<OrderSpecifier<?>> orderSpecifiers) {
return serializer.toSort(orderSpecifiers);
}
// TODO: Remove once https://github.com/querydsl/querydsl/pull/2916 is merged
QueryMixin<Q> getQueryMixin() {
return superQueryMixin;
}
}