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-csv.git
commit 858031d1a30e88fb359b63f0906e86506398e8eb Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sat Jul 3 16:38:57 2021 -0400 Clean up exception. --- src/test/java/org/apache/commons/csv/CSVFormatTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/java/org/apache/commons/csv/CSVFormatTest.java b/src/test/java/org/apache/commons/csv/CSVFormatTest.java index 2dddaa3..9a1f3c0 100644 --- a/src/test/java/org/apache/commons/csv/CSVFormatTest.java +++ b/src/test/java/org/apache/commons/csv/CSVFormatTest.java @@ -1198,7 +1198,7 @@ public class CSVFormatTest { } @Test - public void testFormatToString() throws IOException { + public void testFormatToString() { final CSVFormat format = CSVFormat.RFC4180.withEscape('?').withDelimiter(',') .withQuoteMode(QuoteMode.MINIMAL).withRecordSeparator(CRLF).withQuote('"') .withNullString("").withIgnoreHeaderCase(true)