Skip to content

Commit f5cebc0

Browse files
committed
fixes checksstyle violation
1 parent e58ccb5 commit f5cebc0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mongodb-driver/src/main/java/org/jnosql/diana/mongodb/document/MongoDBDocumentCollectionManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ public void delete(DocumentDeleteQuery query) {
127127

128128
String collectionName = query.getDocumentCollection();
129129
MongoCollection<Document> collection = mongoDatabase.getCollection(collectionName);
130-
Bson mongoDBQuery = query.getCondition().map(DocumentQueryConversor::convert).orElse(EMPTY);;
130+
Bson mongoDBQuery = query.getCondition().map(DocumentQueryConversor::convert).orElse(EMPTY);
131131
collection.deleteMany(mongoDBQuery);
132132
}
133133

0 commit comments

Comments
 (0)