reschke commented on code in PR #1992:
URL: https://github.com/apache/jackrabbit-oak/pull/1992#discussion_r1920089833
##########
oak-blob/src/main/java/org/apache/jackrabbit/oak/spi/blob/AbstractBlobStore.java:
##########
@@ -119,6 +120,11 @@ public abstract class AbstractBlobStore implements
GarbageCollectableBlobStore,
*/
private int blockSize = 2 * 1024 * 1024;
+ /**
+ * Encode in Base 32, hex encoding, no line breaks, padding with "="
+ */
+ private static Base32 BASE32ENCODER =
Base32.builder().setLineSeparator(new byte[0]).setPadding((byte)'=').get();
+
Review Comment:
It was.
I now changed to the old-style constructor, because we otherwise would have
to speficy the actual values (the constants in the Base32 class are private).
--
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]