This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-codec.git

commit 608ef907adc9a3b05e1323b57277d07ab7b017bf
Author: Gary Gregory <[email protected]>
AuthorDate: Mon Jan 8 08:06:07 2024 -0500

    Javadoc
---
 src/main/java/org/apache/commons/codec/digest/DigestUtils.java | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/commons/codec/digest/DigestUtils.java 
b/src/main/java/org/apache/commons/codec/digest/DigestUtils.java
index 85e42861..70d2f0c4 100644
--- a/src/main/java/org/apache/commons/codec/digest/DigestUtils.java
+++ b/src/main/java/org/apache/commons/codec/digest/DigestUtils.java
@@ -57,7 +57,10 @@ import org.apache.commons.codec.binary.StringUtils;
  */
 public class DigestUtils {
 
-    private static final int BUFFER_SIZE = 1024;
+    /**
+     * Package-private for tests.
+     */
+    static final int BUFFER_SIZE = 1024;
 
     /**
      * Reads through a byte array and returns the digest for the data. 
Provided for symmetry with other methods.

Reply via email to