Skip to content

Commit 7aeddef

Browse files
committed
Change the type of printer API to accept Object instead of String.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1398006 13f79535-47bb-0310-9956-ffa450edef68
1 parent 3be1057 commit 7aeddef

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/org/apache/commons/csv/CSVFormat.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -510,7 +510,7 @@ public Iterable<CSVRecord> parse(final Reader in) throws IOException {
510510
* @param values
511511
* the values to format
512512
*/
513-
public String format(final String... values) {
513+
public String format(final Object... values) {
514514
final StringWriter out = new StringWriter();
515515
try {
516516
new CSVPrinter(out, this).println(values);

0 commit comments

Comments
 (0)