shodaaan commented on code in PR #1805:
URL: https://github.com/apache/jackrabbit-oak/pull/1805#discussion_r1838421152
##########
oak-store-document/src/main/java/org/apache/jackrabbit/oak/plugins/document/VersionGarbageCollector.java:
##########
@@ -168,7 +168,7 @@ public class VersionGarbageCollector {
* Ultimately the goal is to clean up all possible garbage. After
hardening these modes
* might no longer be supported.
*/
- enum FullGCMode {
+ enum FullGCMode {
Review Comment:
Fixed, thank you for the comment.
##########
oak-store-document/src/test/java/org/apache/jackrabbit/oak/plugins/document/FullGCHelper.java:
##########
@@ -70,6 +70,14 @@ public static RevisionVector unmergedBranchCommit(final
NodeStore store, final C
return result;
}
+ public static boolean includesEmptyProps(int fullGCMode) {
+ return fullGCMode == 1;
+ }
+
+ public static boolean includesGapOrphans(int fullGCMode) {
+ return fullGCMode == 2;
+ }
+
Review Comment:
Fixed, thank you for the comment.
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]