Skip to content

Commit 140f23c

Browse files
LinkedListodrotbohm
authored andcommitted
DATAMONGO-1514 - SpringDataMongodbQuery needs to be public.
SpringDataMongodbQuery is exposed publicly in QuerydslRepositorySupport, that's we've got to make it public to make sure class to the exposed methods from outside the package actually compile. Original pull request: #401.
1 parent 3cc99b9 commit 140f23c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
*
2828
* @author Oliver Gierke
2929
*/
30-
class SpringDataMongodbQuery<T> extends MongodbQuery<T> {
30+
public class SpringDataMongodbQuery<T> extends MongodbQuery<T> {
3131

3232
private final MongoOperations operations;
3333

0 commit comments

Comments
 (0)