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 b2d075642ac1d370cd8fdd8b80d29f1c88ca4757
Author: Gary Gregory <gardgreg...@gmail.com>
AuthorDate: Sat Dec 12 10:01:24 2020 -0500

    Remove unused exception from private method signature.
---
 src/main/java/org/apache/commons/io/input/ReversedLinesFileReader.java | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git 
a/src/main/java/org/apache/commons/io/input/ReversedLinesFileReader.java 
b/src/main/java/org/apache/commons/io/input/ReversedLinesFileReader.java
index c4ff400..5d45b6f 100644
--- a/src/main/java/org/apache/commons/io/input/ReversedLinesFileReader.java
+++ b/src/main/java/org/apache/commons/io/input/ReversedLinesFileReader.java
@@ -122,9 +122,8 @@ public class ReversedLinesFileReader implements Closeable {
          * Reads a line.
          *
          * @return the line or null
-         * @throws IOException if there is an error reading from the file
          */
-        private String readLine() throws IOException {
+        private String readLine() {
 
             String line = null;
             int newLineMatchByteCount;

Reply via email to