Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
osiegmar committed Jan 7, 2018
1 parent fc41be7 commit eaf9844
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ Write full CSV file at once (RFC standard format, UTF-8 encoded)
File file = new File("foo.csv");
CsvWriter csvWriter = new CsvWriter();

final Collection<String[]> data = new ArrayList<>();
Collection<String[]> data = new ArrayList<>();
data.add(new String[] { "header1", "header2" });
data.add(new String[] { "value1", "value2" });

Expand Down

0 comments on commit eaf9844

Please sign in to comment.