Commit 752f44fd authored by R.W.Majeed's avatar R.W.Majeed
Browse files

removed default escape character handling of backslashes

parent 401f1732
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -8,6 +8,7 @@ import java.net.URL;
import java.net.URLConnection;
import java.time.Instant;

import com.opencsv.CSVParser;
import com.opencsv.CSVReader;

public class FileRowSupplier extends RowSupplier {
@@ -27,7 +28,7 @@ public class FileRowSupplier extends RowSupplier {
			}
		}
		this.url = location;
		this.in = new CSVReader(new InputStreamReader(location.openStream()),fieldSeparator.charAt(0));
		this.in = new CSVReader(new InputStreamReader(location.openStream()),fieldSeparator.charAt(0), CSVParser.DEFAULT_QUOTE_CHARACTER, (char)0);
		
		// TODO: check whether needed to close underlying InputStream