1 parent 2fff514 commit fc00a31Copy full SHA for fc00a31
1 file changed
examples/FileRush/src/main/java/fastfileindex/FileRush.java
@@ -19,11 +19,8 @@ public static void main(String[] args) {
19
ProgressCallback callback = new ProgressCallback() {
20
@Override
21
public void onProgress(long current, long total, String currentPath) {
22
- // Truncate path for display to fit 120 chars
23
- String displayPath = truncatePath(currentPath, 80);
24
-
25
- // Format output - single line per file
26
- System.out.println(displayPath);
+ // Display full path - no truncation
+ System.out.println(currentPath);
27
28
// Small delay for visual effect (every 50 files)
29
if (current % 50 == 0 && current > 0) {
0 commit comments