JAVA-23082 Review log statements for projects - Week 16 - 2023 (moved-13) (conti-1)

This commit is contained in:
timis1
2023-07-10 11:22:34 +03:00
committed by n
parent c998a6ffd6
commit 9b39c0ffaa
14 changed files with 187 additions and 15 deletions

View File

@@ -65,6 +65,7 @@ public class NioVsNio2UnitTest {
public void listFilesUsingWalk() throws Exception {
Path path = Paths.get("src/test");
Stream<Path> walk = Files.walk(path);
walk.forEach(System.out::println);
assertThat(walk.findAny()).isPresent();
}
}