Skip to content

Commit 30f915a

Browse files
committed
Better parameter name.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/codec/trunk@1075404 13f79535-47bb-0310-9956-ffa450edef68
1 parent 69e1615 commit 30f915a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/java/org/apache/commons/codec/Decoder.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public interface Decoder {
4040
* implementation. If a {@link ClassCastException} occurs
4141
* this decode method will throw a DecoderException.
4242
*
43-
* @param pObject an object to "decode"
43+
* @param source the object to decode
4444
*
4545
* @return a 'decoded" object
4646
*
@@ -50,6 +50,6 @@ public interface Decoder {
5050
* method is null, a param cannot be cast to the
5151
* appropriate type for a specific encoder.
5252
*/
53-
Object decode(Object pObject) throws DecoderException;
53+
Object decode(Object source) throws DecoderException;
5454
}
5555

0 commit comments

Comments
 (0)