File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/main/java/org/apache/commons/codec/binary Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff 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 /**
You can’t perform that action at this time.
0 commit comments