Fix issues related to Querydsl 5.0 upgrade.
Remove overridden methods no longer available in public api. Closes: #3738
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user