Resolved warning caused by the usage of a deprecated constructor.
git-svn-id: https://svn.apache.org/repos/asf/commons/sandbox/csv/trunk@1065526 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
339c2a689c
commit
58149e21ad
|
@ -121,8 +121,7 @@ public class CSVParser {
|
||||||
* @param input a Reader containing "csv-formatted" input
|
* @param input a Reader containing "csv-formatted" input
|
||||||
*/
|
*/
|
||||||
public CSVParser(Reader input) {
|
public CSVParser(Reader input) {
|
||||||
// note: must match default-CSV-strategy !!
|
this(input, (CSVStrategy)CSVStrategy.DEFAULT_STRATEGY.clone());
|
||||||
this(input, ',');
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue