reschke commented on code in PR #2038: URL: https://github.com/apache/jackrabbit-oak/pull/2038#discussion_r1936722442
########## oak-store-document/src/main/java/org/apache/jackrabbit/oak/plugins/document/Collection.java: ########## @@ -99,8 +99,17 @@ public Document newDocument(DocumentStore store) { } }; + public static final Collection<Document> BIN = + new Collection<Document>("_bin") { + @NotNull + @Override + public Document newDocument(DocumentStore store) { + return new BinDocument(store); + } + }; + Review Comment: ...broken whitespace... -- 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