Skip to content

Commit 77dd3dc

Browse files
committed
Javadoc fixes.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/codec/trunk@1073216 13f79535-47bb-0310-9956-ffa450edef68
1 parent 6b4c201 commit 77dd3dc

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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.

0 commit comments

Comments
 (0)