Skip to content

Commit a5a2080

Browse files
stop logging deletion of folder
1 parent 960d6f7 commit a5a2080

File tree

3 files changed

+0
-3
lines changed

3 files changed

+0
-3
lines changed

src/main/java/org/terracotta/tinypounder/CacheManagerBusinessReflectionImpl.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,6 @@ private void deleteFolder(String tinyPounderDiskPersistenceLocation) throws IOEx
430430
Files.walk(rootPath, FileVisitOption.FOLLOW_LINKS)
431431
.sorted(Comparator.reverseOrder())
432432
.map(Path::toFile)
433-
.peek(System.out::println)
434433
.forEach(File::delete);
435434
}
436435

src/main/java/org/terracotta/tinypounder/TinyPounderMainUI.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -552,7 +552,6 @@ private void addVoltronConfigControls() {
552552
Files.walk(rootPath, FileVisitOption.FOLLOW_LINKS)
553553
.sorted(Comparator.reverseOrder())
554554
.map(Path::toFile)
555-
.peek(System.out::println)
556555
.forEach(File::delete);
557556
displayWarningNotification("Folder deleted with success");
558557
changeTrashButtonStatus(baseLocation.getValue());

src/test/java/org/terracotta/tinypounder/CacheManagerBusinessApiImpl.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,6 @@ private void deleteFolder(String tinyPounderDiskPersistenceLocation) throws IOEx
7272
Files.walk(rootPath, FileVisitOption.FOLLOW_LINKS)
7373
.sorted(Comparator.reverseOrder())
7474
.map(Path::toFile)
75-
.peek(System.out::println)
7675
.forEach(File::delete);
7776
}
7877

0 commit comments

Comments
 (0)