Skip to content

Commit d2c9b47

Browse files
Fix issues related to Querydsl 5.0 upgrade.
Remove overridden methods no longer available in public api. Closes: #3738
1 parent 4d7ee0e commit d2c9b47

File tree

2 files changed

+0
-15
lines changed

2 files changed

+0
-15
lines changed

spring-data-mongodb/src/main/java/org/springframework/data/mongodb/repository/support/QuerydslAbstractMongodbQuery.java

-10
Original file line numberDiff line numberDiff line change
@@ -177,16 +177,6 @@ protected Document createSort(List<OrderSpecifier<?>> orderSpecifiers) {
177177
return serializer.toSort(orderSpecifiers);
178178
}
179179

180-
/**
181-
* Get the actual {@link QueryMixin} delegate.
182-
*
183-
* @return
184-
*/
185-
QueryMixin<Q> getQueryMixin() {
186-
return queryMixin;
187-
}
188-
189-
190180
/**
191181
* Returns the {@literal Mongo Shell} representation of the query. <br />
192182
* The following query

spring-data-mongodb/src/main/java/org/springframework/data/mongodb/repository/support/SpringDataMongodbQuerySupport.java

-5
Original file line numberDiff line numberDiff line change
@@ -139,9 +139,4 @@ public String toJson(JsonWriterSettings settings) {
139139
protected Document createSort(List<OrderSpecifier<?>> orderSpecifiers) {
140140
return serializer.toSort(orderSpecifiers);
141141
}
142-
143-
// TODO: Remove once https://github.com/querydsl/querydsl/pull/2916 is merged
144-
QueryMixin<Q> getQueryMixin() {
145-
return superQueryMixin;
146-
}
147142
}

0 commit comments

Comments
 (0)