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 942ec1c commit 033a7acCopy full SHA for 033a7ac
src/main/java/com/example/FindJavaFiles.java
@@ -13,7 +13,7 @@ private static void findAndPrintJavaFiles(File directory) {
13
File[] files = directory.listFiles((dir, name) -> name.endsWith(".java") && !name.equals("MainMethodTest.java"));
14
if (files != null) {
15
for (File file : files) {
16
- System.out.println("Found Java file: " + file.getAbsolutePath());
+ System.out.println(file.getAbsolutePath());
17
}
18
19
0 commit comments