Skip to content

Commit c48d20a

Browse files
committed
Fix Ant Javadoc warnings.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/codec/trunk@1086316 13f79535-47bb-0310-9956-ffa450edef68
1 parent d62245d commit c48d20a

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ public class Base32 extends BaseNCodec {
126126

127127
/**
128128
* Convenience variable to help us determine when our buffer is going to run out of room and needs resizing.
129-
* <code>decodeSize = {@link BYTES_PER_ENCODED_BLOCK} - 1 + lineSeparator.length;</code>
129+
* <code>decodeSize = {@link #BYTES_PER_ENCODED_BLOCK} - 1 + lineSeparator.length;</code>
130130
*/
131131
private final int decodeSize;
132132

@@ -137,7 +137,7 @@ public class Base32 extends BaseNCodec {
137137

138138
/**
139139
* Convenience variable to help us determine when our buffer is going to run out of room and needs resizing.
140-
* <code>encodeSize = {@link BYTES_PER_ENCODED_BLOCK} + lineSeparator.length;</code>
140+
* <code>encodeSize = {@link #BYTES_PER_ENCODED_BLOCK} + lineSeparator.length;</code>
141141
*/
142142
private final int encodeSize;
143143

@@ -276,7 +276,7 @@ public Base32(int lineLength, byte[] lineSeparator, boolean useHex) {
276276
* @param inAvail
277277
* Amount of bytes available from input for encoding.
278278
*
279-
* Output is written to {@link #buffer} as 8-bit octets, using {@link pos} as the buffer position
279+
* Output is written to {@link #buffer} as 8-bit octets, using {@link #pos} as the buffer position
280280
*/
281281
void decode(byte[] in, int inPos, int inAvail) { // package protected for access from I/O streams
282282
if (eof) {

0 commit comments

Comments
 (0)