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.
This commit is contained in:
Martin Macko
2016-10-27 13:29:56 +02:00
committed by Oliver Gierke
parent 3cc99b9ea7
commit 140f23c7db

View File

@@ -27,7 +27,7 @@ import com.mysema.query.mongodb.MongodbQuery;
*
* @author Oliver Gierke
*/
class SpringDataMongodbQuery<T> extends MongodbQuery<T> {
public class SpringDataMongodbQuery<T> extends MongodbQuery<T> {
private final MongoOperations operations;