This is an automated email from the ASF dual-hosted git repository.
reschke pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/jackrabbit-oak.git
The following commit(s) were added to refs/heads/trunk by this push:
new d59d475881 OAK-11639: oak-run-commons:
IncrementalFlatFileStoreStrategy uses com.google.common classes (instead of
shaded ones) (#2210)
d59d475881 is described below
commit d59d47588195bd74eb25b008cf7451c61ae5797a
Author: Julian Reschke <[email protected]>
AuthorDate: Sun Apr 6 18:22:04 2025 +0200
OAK-11639: oak-run-commons: IncrementalFlatFileStoreStrategy uses
com.google.common classes (instead of shaded ones) (#2210)
---
.../document/incrementalstore/IncrementalFlatFileStoreStrategy.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/oak-run-commons/src/main/java/org/apache/jackrabbit/oak/index/indexer/document/incrementalstore/IncrementalFlatFileStoreStrategy.java
b/oak-run-commons/src/main/java/org/apache/jackrabbit/oak/index/indexer/document/incrementalstore/IncrementalFlatFileStoreStrategy.java
index 3b33840c1e..6d29527913 100644
---
a/oak-run-commons/src/main/java/org/apache/jackrabbit/oak/index/indexer/document/incrementalstore/IncrementalFlatFileStoreStrategy.java
+++
b/oak-run-commons/src/main/java/org/apache/jackrabbit/oak/index/indexer/document/incrementalstore/IncrementalFlatFileStoreStrategy.java
@@ -18,8 +18,8 @@
*/
package org.apache.jackrabbit.oak.index.indexer.document.incrementalstore;
-import com.google.common.base.Stopwatch;
import org.apache.commons.io.FileUtils;
+import org.apache.jackrabbit.guava.common.base.Stopwatch;
import org.apache.jackrabbit.oak.commons.Compression;
import
org.apache.jackrabbit.oak.index.indexer.document.flatfile.FlatFileStoreUtils;
import
org.apache.jackrabbit.oak.index.indexer.document.flatfile.NodeStateEntrySorter;