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:
Gary D. Gregory 2012-10-14 04:36:51 +00:00
parent 3be1057064
commit 7aeddef435
1 changed files with 1 additions and 1 deletions

View File

@ -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);