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:
Jacopo Cappellato 2011-01-31 08:50:59 +00:00
parent 339c2a689c
commit 58149e21ad
1 changed files with 1 additions and 2 deletions

View File

@ -121,8 +121,7 @@ public class CSVParser {
* @param input a Reader containing "csv-formatted" input
*/
public CSVParser(Reader input) {
// note: must match default-CSV-strategy !!
this(input, ',');
this(input, (CSVStrategy)CSVStrategy.DEFAULT_STRATEGY.clone());
}
/**