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 fe6e6e9872eb8dd75f8b84cf48d0674f8748e02b Author: Gary Gregory <gardgreg...@gmail.com> AuthorDate: Sat Dec 12 10:17:19 2020 -0500 Fix typo. --- .../java/org/apache/commons/io/input/UnixLineEndingInputStream.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/apache/commons/io/input/UnixLineEndingInputStream.java b/src/main/java/org/apache/commons/io/input/UnixLineEndingInputStream.java index 1b92bb8..dc43e30 100644 --- a/src/main/java/org/apache/commons/io/input/UnixLineEndingInputStream.java +++ b/src/main/java/org/apache/commons/io/input/UnixLineEndingInputStream.java @@ -119,6 +119,6 @@ public class UnixLineEndingInputStream extends InputStream { */ @Override public synchronized void mark(final int readlimit) { - throw new UnsupportedOperationException("Mark notsupported"); + throw new UnsupportedOperationException("Mark not supported"); } }