You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2020/12/12 15:18:52 UTC

[commons-io] branch master updated: Javadoc.

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


The following commit(s) were added to refs/heads/master by this push:
     new 11c1f95  Javadoc.
11c1f95 is described below

commit 11c1f950a0243c7673a2fbc0d142f0627ef19010
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sat Dec 12 10:18:47 2020 -0500

    Javadoc.
---
 .../java/org/apache/commons/io/input/UnixLineEndingInputStream.java   | 4 ++--
 .../org/apache/commons/io/input/WindowsLineEndingInputStream.java     | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

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 dc43e30..ef2aecc 100644
--- a/src/main/java/org/apache/commons/io/input/UnixLineEndingInputStream.java
+++ b/src/main/java/org/apache/commons/io/input/UnixLineEndingInputStream.java
@@ -38,7 +38,7 @@ public class UnixLineEndingInputStream extends InputStream {
     private final boolean ensureLineFeedAtEndOfFile;
 
     /**
-     * Create an input stream that filters another stream
+     * Creates an input stream that filters another stream
      *
      * @param in                        The input stream to wrap
      * @param ensureLineFeedAtEndOfFile true to ensure that the file ends with LF
@@ -89,7 +89,7 @@ public class UnixLineEndingInputStream extends InputStream {
     }
 
     /**
-     * Handles the eof-handling at the end of the stream
+     * Handles the EOF-handling at the end of the stream
      * @param previousWasSlashR Indicates if the last seen was a \r
      * @return The next char to output to the stream
      */
diff --git a/src/main/java/org/apache/commons/io/input/WindowsLineEndingInputStream.java b/src/main/java/org/apache/commons/io/input/WindowsLineEndingInputStream.java
index 2a81251..1d0da0c 100644
--- a/src/main/java/org/apache/commons/io/input/WindowsLineEndingInputStream.java
+++ b/src/main/java/org/apache/commons/io/input/WindowsLineEndingInputStream.java
@@ -39,7 +39,7 @@ public class WindowsLineEndingInputStream  extends InputStream {
     private final boolean ensureLineFeedAtEndOfFile;
 
     /**
-     * Create an input stream that filters another stream
+     * Creates an input stream that filters another stream
      *
      * @param in                        The input stream to wrap
      * @param ensureLineFeedAtEndOfFile true to ensure that the file ends with CRLF
@@ -92,7 +92,7 @@ public class WindowsLineEndingInputStream  extends InputStream {
     }
 
     /**
-     * Handles the eof-handling at the end of the stream
+     * Handles the EOF-handling at the end of the stream
      * @return The next char to output to the stream
      */