Skip to content

Commit 9f177fd

Browse files
author
Gary Gregory
committed
Javadoc and comments.
1 parent d85f343 commit 9f177fd

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,16 +68,18 @@ public int available() throws IOException {
6868
* <p>The {@link #mark} method of {@link BaseNCodecInputStream} does nothing.</p>
6969
*
7070
* @param readLimit the maximum limit of bytes that can be read before the mark position becomes invalid.
71+
* @see #markSupported()
7172
* @since 1.7
7273
*/
7374
@Override
7475
public synchronized void mark(final int readLimit) {
76+
// noop
7577
}
7678

7779
/**
7880
* {@inheritDoc}
7981
*
80-
* @return always returns <code>false</code>
82+
* @return Always returns <code>false</code>
8183
*/
8284
@Override
8385
public boolean markSupported() {

0 commit comments

Comments
 (0)