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-io.git
commit 53f3d02fdfd095761a24dd3ac5b3a1c852bb68df Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Tue Dec 10 16:30:13 2024 -0500 PMD fix make: Make class final --- src/main/java/org/apache/commons/io/ByteBuffers.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/apache/commons/io/ByteBuffers.java b/src/main/java/org/apache/commons/io/ByteBuffers.java index 6c557f313..d020ca915 100644 --- a/src/main/java/org/apache/commons/io/ByteBuffers.java +++ b/src/main/java/org/apache/commons/io/ByteBuffers.java @@ -27,7 +27,7 @@ import java.nio.ByteOrder; * * @since 2.19.0 */ -public class ByteBuffers { +public final class ByteBuffers { /** * Allocates a new byte buffer with little-endian byte order. The bytes of a multibyte value are ordered from least significant to most significant.