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
This commit is contained in:
parent
3be1057064
commit
7aeddef435
|
@ -510,7 +510,7 @@ public class CSVFormat implements Serializable {
|
|||
* @param values
|
||||
* the values to format
|
||||
*/
|
||||
public String format(final String... values) {
|
||||
public String format(final Object... values) {
|
||||
final StringWriter out = new StringWriter();
|
||||
try {
|
||||
new CSVPrinter(out, this).println(values);
|
||||
|
|
Loading…
Reference in New Issue