We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e58ccb5 commit f5cebc0Copy full SHA for f5cebc0
mongodb-driver/src/main/java/org/jnosql/diana/mongodb/document/MongoDBDocumentCollectionManager.java
@@ -127,7 +127,7 @@ public void delete(DocumentDeleteQuery query) {
127
128
String collectionName = query.getDocumentCollection();
129
MongoCollection<Document> collection = mongoDatabase.getCollection(collectionName);
130
- Bson mongoDBQuery = query.getCondition().map(DocumentQueryConversor::convert).orElse(EMPTY);;
+ Bson mongoDBQuery = query.getCondition().map(DocumentQueryConversor::convert).orElse(EMPTY);
131
collection.deleteMany(mongoDBQuery);
132
}
133
0 commit comments