Skip to content

Commit

Permalink
Accidentally passed null for the charset -- fixed.
Browse files Browse the repository at this point in the history
  • Loading branch information
rscarberry-wa committed Nov 26, 2014
1 parent 01d3603 commit de55ad2
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -212,7 +212,7 @@ public static TupleList loadCSV(

try {

br = new BufferedReader(new InputStreamReader(new FileInputStream(file), charSet));
br = new BufferedReader(new InputStreamReader(new FileInputStream(file), cs));
String line;
int lineNum = -1;
int row = 0;
Expand Down

0 comments on commit de55ad2

Please sign in to comment.