mirror of https://github.com/apache/poi.git
Eclipse warnings
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1647213 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
920c7d5988
commit
fb91a277c8
|
@ -132,7 +132,7 @@ import org.apache.poi.ss.usermodel.WorkbookFactory;
|
|||
public class ToCSV {
|
||||
|
||||
private Workbook workbook = null;
|
||||
private ArrayList<ArrayList> csvData = null;
|
||||
private ArrayList<ArrayList<String>> csvData = null;
|
||||
private int maxRowWidth = 0;
|
||||
private int formattingConvention = 0;
|
||||
private DataFormatter formatter = null;
|
||||
|
@ -406,7 +406,7 @@ public class ToCSV {
|
|||
Sheet sheet = null;
|
||||
Row row = null;
|
||||
int lastRowNum = 0;
|
||||
this.csvData = new ArrayList<ArrayList>();
|
||||
this.csvData = new ArrayList<ArrayList<String>>();
|
||||
|
||||
System.out.println("Converting files contents to CSV format.");
|
||||
|
||||
|
|
Loading…
Reference in New Issue