stefan-egli commented on code in PR #1454: URL: https://github.com/apache/jackrabbit-oak/pull/1454#discussion_r1600319735
########## oak-store-document/src/main/java/org/apache/jackrabbit/oak/plugins/document/DocumentNodeStoreBuilder.java: ########## @@ -290,6 +294,25 @@ public boolean isThrottlingEnabled() { return this.throttlingEnabled; } + public T setFullGCEnabled(boolean b) { + this.fullGCEnabled = b; + return thisBuilder(); + } + + public boolean isFullGCEnabled() { + return this.fullGCEnabled; + } + + public T setEmbeddedVerificationEnabled(boolean b) { + this.embeddedVerificationEnabled = b; + return thisBuilder(); + } + + public boolean isEmbeddedVerificationEnabled() { + return this.embeddedVerificationEnabled; + } + + Review Comment: removed in https://github.com/apache/jackrabbit-oak/pull/1459 ########## oak-store-document/src/main/java/org/apache/jackrabbit/oak/plugins/document/VersionGCSupport.java: ########## @@ -19,12 +19,28 @@ package org.apache.jackrabbit.oak.plugins.document; +import static java.util.Comparator.comparing; +import static java.util.Optional.empty; +import static java.util.Optional.of; +import static java.util.Optional.ofNullable; +import static java.util.stream.Stream.concat; +import static java.util.stream.StreamSupport.stream; import static org.apache.jackrabbit.guava.common.collect.Iterables.filter; +import static java.util.stream.Collectors.toList; +import static org.apache.jackrabbit.guava.common.collect.Sets.newHashSet; Review Comment: removed guava usage in https://github.com/apache/jackrabbit-oak/pull/1459 -- 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: dev-unsubscr...@jackrabbit.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org