mbaedke commented on code in PR #1992:
URL: https://github.com/apache/jackrabbit-oak/pull/1992#discussion_r1918685892


##########
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:
   Fehlt da nicht .setEncodeTable(...) ?



-- 
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]

Reply via email to