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-jcs.git
The following commit(s) were added to refs/heads/master by this push: new 7c91711c Comment: Remove unnecessary Latin acronym 7c91711c is described below commit 7c91711cca9747606e8ef03a79fbf9a88a57c1f2 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Fri Mar 14 10:06:03 2025 -0400 Comment: Remove unnecessary Latin acronym --- .../java/org/apache/commons/jcs3/auxiliary/disk/block/BlockDisk.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commons-jcs3-core/src/main/java/org/apache/commons/jcs3/auxiliary/disk/block/BlockDisk.java b/commons-jcs3-core/src/main/java/org/apache/commons/jcs3/auxiliary/disk/block/BlockDisk.java index fd54b9a8..00143e85 100644 --- a/commons-jcs3-core/src/main/java/org/apache/commons/jcs3/auxiliary/disk/block/BlockDisk.java +++ b/commons-jcs3-core/src/main/java/org/apache/commons/jcs3/auxiliary/disk/block/BlockDisk.java @@ -44,7 +44,7 @@ public class BlockDisk implements AutoCloseable /** The size of the header that indicates the amount of data stored in an occupied block. */ public static final byte HEADER_SIZE_BYTES = 4; - // N.B. 4 bytes is the size used for ByteBuffer.putInt(int value) and ByteBuffer.getInt() + // 4 bytes is the size used for ByteBuffer.putInt(int value) and ByteBuffer.getInt() /** Defaults to 4kb */ private static final int DEFAULT_BLOCK_SIZE_BYTES = 4 * 1024;