Skip to content

Commit 1b78bc1

Browse files
committed
Avoid Eclipse warning
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1460396 13f79535-47bb-0310-9956-ffa450edef68
1 parent 7825b26 commit 1b78bc1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/test/java/org/apache/commons/csv/CSVPrinterTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ public void doOneRandom(final CSVFormat format) throws Exception {
7373

7474
for (int i = 0; i < nLines; i++) {
7575
// for (int j=0; j<lines[i].length; j++) System.out.println("### VALUE=:" + printable(lines[i][j]));
76-
printer.printRecord(lines[i]);
76+
printer.printRecord((Object[])lines[i]);
7777
}
7878

7979
printer.flush();

0 commit comments

Comments
 (0)