We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d85f343 commit 9f177fdCopy full SHA for 9f177fd
1 file changed
src/main/java/org/apache/commons/codec/binary/BaseNCodecInputStream.java
@@ -68,16 +68,18 @@ public int available() throws IOException {
68
* <p>The {@link #mark} method of {@link BaseNCodecInputStream} does nothing.</p>
69
*
70
* @param readLimit the maximum limit of bytes that can be read before the mark position becomes invalid.
71
+ * @see #markSupported()
72
* @since 1.7
73
*/
74
@Override
75
public synchronized void mark(final int readLimit) {
76
+ // noop
77
}
78
79
/**
80
* {@inheritDoc}
81
- * @return always returns <code>false</code>
82
+ * @return Always returns <code>false</code>
83
84
85
public boolean markSupported() {
0 commit comments