Skip to content

Commit 13ee59a

Browse files
authored
OAK-11420: Remove usage of Guava Files.move() - oak-blob-plugins (#2029)
1 parent 7efcf23 commit 13ee59a

File tree

1 file changed

+1
-1
lines changed
  • oak-blob-plugins/src/main/java/org/apache/jackrabbit/oak/plugins/blob/datastore

1 file changed

+1
-1
lines changed

oak-blob-plugins/src/main/java/org/apache/jackrabbit/oak/plugins/blob/datastore/BlobIdTracker.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -449,7 +449,7 @@ public void reconcile(File recs) throws IOException {
449449
}
450450
}
451451

452-
org.apache.jackrabbit.guava.common.io.Files.move(removed, delFile);
452+
Files.move(removed.toPath(), delFile.toPath(), StandardCopyOption.REPLACE_EXISTING);
453453
LOG.trace("removed active delete records");
454454
} finally {
455455
lock.unlock();

0 commit comments

Comments
 (0)