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/09/20 22:50:18 UTC

[commons-net] 01/02: Remove unused throws clause from package private constructor.

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-net.git

commit dd362ac29a4e262ab4778416e572bd4246e985c4
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sun Sep 20 18:25:09 2020 -0400

    Remove unused throws clause from package private constructor.
---
 src/main/java/org/apache/commons/net/examples/mail/IMAPExportMbox.java | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/src/main/java/org/apache/commons/net/examples/mail/IMAPExportMbox.java b/src/main/java/org/apache/commons/net/examples/mail/IMAPExportMbox.java
index f98acf9..750c7a7 100644
--- a/src/main/java/org/apache/commons/net/examples/mail/IMAPExportMbox.java
+++ b/src/main/java/org/apache/commons/net/examples/mail/IMAPExportMbox.java
@@ -345,8 +345,7 @@ public final class IMAPExportMbox
         private final boolean printMarker;
         private final boolean checkSequence;
 
-        MboxListener(final BufferedWriter bw, final String eol, final boolean printHash, final boolean printMarker, final boolean checkSequence)
-                throws IOException {
+        MboxListener(final BufferedWriter bw, final String eol, final boolean printHash, final boolean printMarker, final boolean checkSequence) {
           this.eol = eol;
           this.printHash = printHash;
           this.printMarker = printMarker;