[CSV-217] Add autoFlush option for CsvPrinter. Remove println() in test.

This commit is contained in:
Gary Gregory 2017-10-09 13:24:47 -06:00
parent 9c20341469
commit 3c0a73b30f
1 changed files with 1 additions and 1 deletions

View File

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