reschke commented on code in PR #2039:
URL: https://github.com/apache/jackrabbit-oak/pull/2039#discussion_r1936876612


##########
oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/index/datastore/DataStoreTextWriter.java:
##########
@@ -131,7 +130,7 @@ public void write(@NotNull String blobId,@NotNull String 
text) throws IOExceptio
         File textFile = getFile(stripLength(blobId));
         ensureParentExists(textFile);
         //TODO should we compress
-        Files.write(text, textFile, StandardCharsets.UTF_8);
+        org.apache.jackrabbit.guava.common.io.Files.write(text, textFile, 
StandardCharsets.UTF_8);

Review Comment:
   That's no functional change. We need a FQN here because JDK Files replaces 
Guava Files just for `Files.toString()`. Other methods will be replaced later 
on.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: oak-dev-unsubscr...@jackrabbit.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to