Update CSVFile.java to fix #705

- Fix wrong assignation
This commit is contained in:
Libin Yang
2019-02-04 16:18:12 +08:00
committed by GitHub
parent d5d6d459bd
commit cbfa8875aa

View File

@ -136,7 +136,7 @@ public class CSVFile {
table = new ArrayList<ArrayList<String>>();
trackList = new ArrayList<Integer>();
pathCSVFile = "";
this.seperator = seperator;
this.seperator = separator;
}