File tree Expand file tree Collapse file tree
src/java/org/apache/commons/codec/binary Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -161,13 +161,13 @@ int available() { // package protected for access from I/O streams
161161 /**
162162 * Get the default buffer size. Can be overridden.
163163 *
164- * @return {@link DEFAULT_BUFFER_RESIZE_SIZE }
164+ * @return {@link #DEFAULT_BUFFER_SIZE }
165165 */
166166 protected int getDefaultBufferSize () {
167167 return DEFAULT_BUFFER_SIZE ;
168168 }
169169
170- /** Increases our buffer by the {@link DEFAULT_BUFFER_RESIZE_FACTOR}. */
170+ /** Increases our buffer by the {@link # DEFAULT_BUFFER_RESIZE_FACTOR}. */
171171 private void resizeBuffer () {
172172 if (buffer == null ) {
173173 buffer = new byte [getDefaultBufferSize ()];
@@ -363,11 +363,11 @@ public String encodeAsString(byte[] pArray){
363363 * Returns whether or not the <code>octet</code> is in the current alphabet.
364364 * Does not allow whitespace or pad.
365365 *
366- * @param octet The value to test
366+ * @param value The value to test
367367 *
368368 * @return <code>true</code> if the value is defined in the current alphabet, <code>false</code> otherwise.
369369 */
370- protected abstract boolean isInAlphabet (byte b );
370+ protected abstract boolean isInAlphabet (byte value );
371371
372372 /**
373373 * Tests a given byte array to see if it contains only valid characters within the alphabet.
You can’t perform that action at this time.
0 commit comments