Skip to content

Commit c18595d

Browse files
author
Gary Gregory
committed
No need for all the whitespace.
1 parent af28635 commit c18595d

1 file changed

Lines changed: 0 additions & 4 deletions

File tree

src/test/java/org/apache/commons/csv/issues/JiraCvs249Test.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,8 @@ public class JiraCvs249Test {
3434

3535
@Test
3636
public void testJiraCsv249() throws IOException {
37-
3837
final CSVFormat csvFormat = CSVFormat.DEFAULT.withEscape('\\');
39-
4038
final StringWriter stringWriter = new StringWriter();
41-
4239
try (CSVPrinter printer = new CSVPrinter(stringWriter, csvFormat)) {
4340
printer.printRecord("foo \\", "bar");
4441
}
@@ -47,7 +44,6 @@ public void testJiraCsv249() throws IOException {
4744
try (CSVParser parser = new CSVParser(stringReader, csvFormat)) {
4845
records = parser.getRecords();
4946
}
50-
5147
records.forEach(record -> {
5248
assertEquals("foo \\", record.get(0));
5349
assertEquals("bar", record.get(1));

0 commit comments

Comments
 (0)