Skip to content

Commit e104437

Browse files
committed
Javadoc
1 parent a725a35 commit e104437

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

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

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,9 @@ public interface BinaryDecoder extends Decoder {
2525
/**
2626
* Decodes a byte array and returns the results as a byte array.
2727
*
28-
* @param source
29-
* A byte array which has been encoded with the appropriate encoder
30-
* @return a byte array that contains decoded content
31-
* @throws DecoderException
32-
* A decoder exception is thrown if a Decoder encounters a failure condition during the decode process.
28+
* @param source A byte array which has been encoded with the appropriate encoder.
29+
* @return a byte array that contains decoded content.
30+
* @throws DecoderException A decoder exception is thrown if a Decoder encounters a failure condition during the decode process.
3331
*/
3432
byte[] decode(byte[] source) throws DecoderException;
3533
}
36-

0 commit comments

Comments
 (0)