Skip to content

Commit 3c0a73b

Browse files
committed
[CSV-217] Add autoFlush option for CsvPrinter. Remove println() in test.
1 parent 9c20341 commit 3c0a73b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/test/java/org/apache/commons/csv/CSVPrinterTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1347,7 +1347,7 @@ public void testCloseBackwardCompatibility() throws IOException {
13471347

13481348
@Test
13491349
public void testCloseWithCsvFormatAutoFlushOn() throws IOException {
1350-
System.out.println("start method");
1350+
// System.out.println("start method");
13511351
Writer writer = mock(Writer.class);
13521352
CSVFormat csvFormat = CSVFormat.DEFAULT.withAutoFlush(true);
13531353
try (CSVPrinter csvPrinter = new CSVPrinter(writer, csvFormat)) {

0 commit comments

Comments
 (0)