Skip to content

Commit

Permalink
Javadoc
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/codec/trunk@1842284 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
sebbASF committed Sep 28, 2018
1 parent 90211fc commit cdfb369
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/org/apache/commons/codec/net/PercentCodec.java
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ private int expectedDecodingBytes(final byte[] bytes) {
*
* @param obj the object to encode
* @return the encoding result byte[] as Object
* @throws EncoderException
* @throws EncoderException if the object is not a byte array
*/
@Override
public Object encode(final Object obj) throws EncoderException {
Expand All @@ -248,7 +248,7 @@ public Object encode(final Object obj) throws EncoderException {
*
* @param obj the object to decode
* @return the decoding result byte[] as Object
* @throws DecoderException
* @throws DecoderException if the object is not a byte array
*/
@Override
public Object decode(final Object obj) throws DecoderException {
Expand Down

0 comments on commit cdfb369

Please sign in to comment.