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) {
6060 }
6161
6262 /**
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>
6464 * and then uses the result to create a BasicQuery with queryObject = result <br>
6565 * Couchbase Query has a 'criteria' which is a <br>
66- * List< QueryCriteriaDefinition> criteria <br>
66+ * List< QueryCriteriaDefinition> criteria <br>
6767 * so we could create a List<QueryCriteriaDefinition> or an uber QueryCriteria that combines <br>
6868 * all the sub QueryDefinitions in the filter.
6969 */
7070 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
7272 return predicate != null ? (QueryCriteriaDefinition ) this .serializer .handle (predicate ) : null ;
7373 }
7474
You can’t perform that action at this time.
0 commit comments