Switch from LinkedList to ArrayList

Just a simple list.  No need for extra overhead..
This commit is contained in:
Tom Morris 2013-03-23 08:16:23 -04:00
parent 56389588e3
commit 0a2ba1b1ae

View File

@ -1,6 +1,6 @@
package com.google.refine.importers.tree;
import java.util.LinkedList;
import java.util.ArrayList;
import java.util.List;
import com.google.refine.model.Cell;
@ -10,5 +10,5 @@ import com.google.refine.model.Cell;
*
*/
public class ImportRecord {
public List<List<Cell>> rows = new LinkedList<List<Cell>>();
public List<List<Cell>> rows = new ArrayList<List<Cell>>();
}