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 e104437b20aabef356adc363137be345c3273c6a Author: Gary Gregory <[email protected]> AuthorDate: Wed Dec 31 09:19:22 2025 -0500 Javadoc --- src/main/java/org/apache/commons/codec/BinaryDecoder.java | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/src/main/java/org/apache/commons/codec/BinaryDecoder.java b/src/main/java/org/apache/commons/codec/BinaryDecoder.java index f6e42483..4807d8f1 100644 --- a/src/main/java/org/apache/commons/codec/BinaryDecoder.java +++ b/src/main/java/org/apache/commons/codec/BinaryDecoder.java @@ -25,12 +25,9 @@ public interface BinaryDecoder extends Decoder { /** * Decodes a byte array and returns the results as a byte array. * - * @param source - * A byte array which has been encoded with the appropriate encoder - * @return a byte array that contains decoded content - * @throws DecoderException - * A decoder exception is thrown if a Decoder encounters a failure condition during the decode process. + * @param source A byte array which has been encoded with the appropriate encoder. + * @return a byte array that contains decoded content. + * @throws DecoderException A decoder exception is thrown if a Decoder encounters a failure condition during the decode process. */ byte[] decode(byte[] source) throws DecoderException; } -
