Skip to content

Commit 99c53ff

Browse files
committed
Javadoc
1 parent e104437 commit 99c53ff

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

src/main/java/org/apache/commons/codec/BinaryEncoder.java

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,9 @@ public interface BinaryEncoder extends Encoder {
2525
/**
2626
* Encodes a byte array and return the encoded data as a byte array.
2727
*
28-
* @param source
29-
* Data to be encoded
30-
* @return A byte array containing the encoded data
31-
* @throws EncoderException
32-
* thrown if the Encoder encounters a failure condition during the encoding process.
28+
* @param source Data to be encoded.
29+
* @return A byte array containing the encoded data.
30+
* @throws EncoderException thrown if the Encoder encounters a failure condition during the encoding process.
3331
*/
3432
byte[] encode(byte[] source) throws EncoderException;
3533
}
36-

0 commit comments

Comments
 (0)