File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/main/java/com/querydsl/couchbase/document Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -60,15 +60,15 @@ public AbstractCouchbaseQueryDSL(CouchbaseDocumentSerializer serializer) {
60
60
}
61
61
62
62
/**
63
- * mongodb uses createQuery(Predicate filter) where the serializer creates the 'query' <br>
63
+ * other spring-data project uses createQuery(Predicate filter) where the serializer creates the 'query' <br>
64
64
* and then uses the result to create a BasicQuery with queryObject = result <br>
65
65
* Couchbase Query has a 'criteria' which is a <br>
66
- * List< QueryCriteriaDefinition> criteria <br>
66
+ * List< QueryCriteriaDefinition> criteria <br>
67
67
* so we could create a List<QueryCriteriaDefinition> or an uber QueryCriteria that combines <br>
68
68
* all the sub QueryDefinitions in the filter.
69
69
*/
70
70
protected QueryCriteriaDefinition createCriteria (Predicate predicate ) {
71
- // mongodb uses createQuery(Predicate filter) where the serializer creates the 'queryObject' of the BasicQuery
71
+ // other project use createQuery(Predicate filter) where the serializer creates the 'queryObject' of the BasicQuery
72
72
return predicate != null ? (QueryCriteriaDefinition ) this .serializer .handle (predicate ) : null ;
73
73
}
74
74
You can’t perform that action at this time.
0 commit comments