Skip to content

Commit b33974e

Browse files
committed
OAK-11420: Remove usage of Guava Files.move()
1 parent 595b334 commit b33974e

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

oak-commons/src/main/java/org/apache/jackrabbit/oak/commons/FileIOUtils.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,6 @@ public static void sort(File file) throws IOException {
8787
public static void sort(File file, Comparator<String> comparator) throws IOException {
8888
File sorted = createTempFile("fleioutilssort", null);
8989
merge(sortInBatch(file, comparator, true), sorted, comparator);
90-
System.err.println("XXX: " + sorted + " " + file);
9190
Files.move(sorted.toPath(), file.toPath(), StandardCopyOption.REPLACE_EXISTING);
9291
}
9392

0 commit comments

Comments
 (0)