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 99c53ffb770833ef2b3fce19da15572e3e17c377 Author: Gary Gregory <[email protected]> AuthorDate: Wed Dec 31 09:21:18 2025 -0500 Javadoc --- src/main/java/org/apache/commons/codec/BinaryEncoder.java | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/src/main/java/org/apache/commons/codec/BinaryEncoder.java b/src/main/java/org/apache/commons/codec/BinaryEncoder.java index 2b5e8e6a..ad7ff36a 100644 --- a/src/main/java/org/apache/commons/codec/BinaryEncoder.java +++ b/src/main/java/org/apache/commons/codec/BinaryEncoder.java @@ -25,12 +25,9 @@ public interface BinaryEncoder extends Encoder { /** * Encodes a byte array and return the encoded data as a byte array. * - * @param source - * Data to be encoded - * @return A byte array containing the encoded data - * @throws EncoderException - * thrown if the Encoder encounters a failure condition during the encoding process. + * @param source Data to be encoded. + * @return A byte array containing the encoded data. + * @throws EncoderException thrown if the Encoder encounters a failure condition during the encoding process. */ byte[] encode(byte[] source) throws EncoderException; } -
