This is an automated email from the ASF dual-hosted git repository. garydgregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-codec.git
commit 316fb15f3aa1e810a27fcc858d7c0e7ba0a4d724 Author: Gary Gregory <[email protected]> AuthorDate: Sun Jul 26 15:03:01 2026 -0400 Remove unused method --- src/main/java/org/apache/commons/codec/binary/BaseNCodec.java | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/src/main/java/org/apache/commons/codec/binary/BaseNCodec.java b/src/main/java/org/apache/commons/codec/binary/BaseNCodec.java index a90143ff..5cb1e387 100644 --- a/src/main/java/org/apache/commons/codec/binary/BaseNCodec.java +++ b/src/main/java/org/apache/commons/codec/binary/BaseNCodec.java @@ -434,17 +434,6 @@ public abstract class BaseNCodec implements BinaryEncoder, BinaryDecoder { return value; } - /** - * Tests whether or not the {@code value} is in the given {@code table}. - * - * @param value The value to test. - * @param table The table to test against. - * @return {@code true} if the value is in the table, {@code false} otherwise. - */ - static boolean isInAlphabet(final byte value, final byte[] table) { - return value >= 0 && value < table.length && table[value] != -1; - } - /** * Checks if a byte value is whitespace or not. *
