Skip to content

Commit 1b0fbb6

Browse files
committed
Remove debug output from FileRush for maximum speed
1 parent 9521f90 commit 1b0fbb6

1 file changed

Lines changed: 1 addition & 5 deletions

File tree

examples/FileRush/src/main/java/fastfileindex/FileRush.java

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,7 @@ public static void main(String[] args) {
2020
@Override
2121
public void onProgress(long current, long total, String currentPath) {
2222
// Display full path - no truncation
23-
if (currentPath != null && !currentPath.isEmpty()) {
24-
System.out.println(currentPath);
25-
} else {
26-
System.out.println("File #" + current + " (null or empty path)");
27-
}
23+
System.out.println(currentPath);
2824
System.out.flush();
2925

3026
// Small delay for visual effect (every 50 files)

0 commit comments

Comments
 (0)