implemented new basic csv api

master
Niclas Thobaben 2018-02-09 10:57:24 +01:00 committed by Harald Wolff
parent 7bbd7e2cbf
commit ba08a7bfa3
2 changed files with 2 additions and 0 deletions

View File

@ -18,6 +18,7 @@ import java.util.List;
import org.hwo.StringHelper;
import org.hwo.text.LineReader;
@Deprecated
public class CSV {
List<CSVRecord> records;

View File

@ -3,6 +3,7 @@ package org.hwo.csv;
import java.util.ArrayList;
import java.util.Arrays;
@Deprecated
public class CSVRecord {
ArrayList<Object> columns;