Skip to content

Commit

Permalink
Remove debug printf
Browse files Browse the repository at this point in the history
  • Loading branch information
mpfz0r committed Nov 13, 2018
1 parent bc5eb8d commit 0d6a230
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,6 @@ private void removeConfigPath() {
final FindIterable<Document> documentsWithConfigPath = collection.find(exists("configuration_path"));
for (Document document : documentsWithConfigPath) {
final ObjectId objectId = document.getObjectId("_id");
System.out.print( document);
document.remove("configuration_path");
final UpdateResult updateResult = collection.replaceOne(eq("_id", objectId), document);
if (updateResult.wasAcknowledged()) {
Expand Down

0 comments on commit 0d6a230

Please sign in to comment.