Skip to content

Commit c35e3b2

Browse files
committed
Use Java-style parameter names
1 parent e7f5f10 commit c35e3b2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/main/java/org/apache/commons/codec/binary/BaseNCodec.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -545,7 +545,7 @@ public byte[] decode(final byte[] array) {
545545
}
546546

547547
// package protected for access from I/O streams
548-
abstract void decode(byte[] pArray, int i, int length, Context context);
548+
abstract void decode(byte[] array, int i, int length, Context context);
549549

550550
/**
551551
* Decodes an Object using the Base-N algorithm. This method is provided in order to satisfy the requirements of
@@ -572,12 +572,12 @@ public Object decode(final Object obj) throws DecoderException {
572572
/**
573573
* Decodes a String containing characters in the Base-N alphabet.
574574
*
575-
* @param pArray
575+
* @param array
576576
* A String containing Base-N character data
577577
* @return a byte array containing binary data
578578
*/
579-
public byte[] decode(final String pArray) {
580-
return decode(StringUtils.getBytesUtf8(pArray));
579+
public byte[] decode(final String array) {
580+
return decode(StringUtils.getBytesUtf8(array));
581581
}
582582

583583
/**

0 commit comments

Comments
 (0)