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-io.git
commit bb24f0e7b2a84fbace6bafc4e639c1ce9495e19b Author: Gary D. Gregory <garydgreg...@gmail.com> AuthorDate: Tue May 20 07:54:36 2025 -0400 Javadoc --- src/main/java/org/apache/commons/io/input/NullReader.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/org/apache/commons/io/input/NullReader.java b/src/main/java/org/apache/commons/io/input/NullReader.java index e29591f05..bb78f30a1 100644 --- a/src/main/java/org/apache/commons/io/input/NullReader.java +++ b/src/main/java/org/apache/commons/io/input/NullReader.java @@ -120,7 +120,7 @@ public NullReader(final long size, final boolean markSupported, final boolean th } /** - * Closes this Reader - resets the internal state to + * Closes this Reader. Resets the internal state to * the initial values. * * @throws IOException If an error occurs. @@ -149,7 +149,7 @@ private int doEndOfFile() throws EOFException { } /** - * Returns the current position. + * Gets the current position. * * @return the current position. */ @@ -158,7 +158,7 @@ public long getPosition() { } /** - * Returns the size this {@link Reader} emulates. + * Gets the size this {@link Reader} emulates. * * @return The size of the reader to emulate. */ @@ -183,7 +183,7 @@ public synchronized void mark(final int readLimit) { } /** - * Indicates whether <em>mark</em> is supported. + * Tests whether <em>mark</em> is supported. * * @return Whether <em>mark</em> is supported or not. */