This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-codec.git
The following commit(s) were added to refs/heads/master by this push: new 9f177fd Javadoc and comments. 9f177fd is described below commit 9f177fdb5f637bd33328368de42ee4eff6f65508 Author: Gary Gregory <gardgreg...@gmail.com> AuthorDate: Fri May 31 08:02:14 2019 -0400 Javadoc and comments. --- .../java/org/apache/commons/codec/binary/BaseNCodecInputStream.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main/java/org/apache/commons/codec/binary/BaseNCodecInputStream.java b/src/main/java/org/apache/commons/codec/binary/BaseNCodecInputStream.java index cbd36a8..9d8f72d 100644 --- a/src/main/java/org/apache/commons/codec/binary/BaseNCodecInputStream.java +++ b/src/main/java/org/apache/commons/codec/binary/BaseNCodecInputStream.java @@ -68,16 +68,18 @@ public class BaseNCodecInputStream extends FilterInputStream { * <p>The {@link #mark} method of {@link BaseNCodecInputStream} does nothing.</p> * * @param readLimit the maximum limit of bytes that can be read before the mark position becomes invalid. + * @see #markSupported() * @since 1.7 */ @Override public synchronized void mark(final int readLimit) { + // noop } /** * {@inheritDoc} * - * @return always returns <code>false</code> + * @return Always returns <code>false</code> */ @Override public boolean markSupported() {