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
The following commit(s) were added to refs/heads/master by this push: new 4d9f462f New package private method does not need Javadoc since tag 4d9f462f is described below commit 4d9f462f2b4f6588cb828c0c024aca4b05b5ae94 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sat Jun 17 16:13:08 2023 -0400 New package private method does not need Javadoc since tag --- src/main/java/org/apache/commons/codec/binary/BinaryCodec.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/main/java/org/apache/commons/codec/binary/BinaryCodec.java b/src/main/java/org/apache/commons/codec/binary/BinaryCodec.java index e2ca00b8..565b8701 100644 --- a/src/main/java/org/apache/commons/codec/binary/BinaryCodec.java +++ b/src/main/java/org/apache/commons/codec/binary/BinaryCodec.java @@ -136,8 +136,6 @@ public class BinaryCodec implements BinaryDecoder, BinaryEncoder { * @param array * the source array * @return {@code true} if the given array is {@code null} or empty (size 0.) - * - * @since 1.16 change visibility to public */ static boolean isEmpty(final byte[] array) { return array == null || array.length == 0;