3
0

commented out unused variables

git-svn-id: http://google-refine.googlecode.com/svn/trunk@2352 7d457c2a-affb-35e4-300a-418c747d4874
This commit is contained in:
Stefano Mazzocchi 2011-11-01 21:47:24 +00:00
parent 8184e16bb9
commit 856ef6a65a
3 changed files with 4 additions and 4 deletions
main
src/com/google/refine
tests/server/src/com/google/refine/tests/importers

View File

@ -70,7 +70,7 @@ public class OdsExporter implements StreamExporter {
TabularSerializer serializer = new TabularSerializer() {
OdfTable table;
int rowCount = 0;
//int rowCount = 0;
@Override
public void startFile(JSONObject options) {
@ -85,7 +85,7 @@ public class OdsExporter implements StreamExporter {
@Override
public void addRow(List<CellData> cells, boolean isHeader) {
OdfTableRow r = table.appendRow();
rowCount++;
//rowCount++;
for (int i = 0; i < cells.size(); i++) {
OdfTableCell c = r.getCellByIndex(i); // implicitly creates cell

View File

@ -187,7 +187,7 @@ public class OdsImporter extends TabularImportingParserBase {
static protected Serializable extractCell(OdfTableCell cell) {
// TODO: how can we tell if a cell contains an error?
String formula = cell.getFormula();
//String formula = cell.getFormula();
Serializable value = null;
// "boolean", "currency", "date", "float", "percentage", "string" or "time"

View File

@ -72,7 +72,7 @@ public class ExcelImporterTests extends ImporterTest {
private static final int ROWS = 5;
private static final int COLUMNS = 7;
private static final File xlsxFile = createSpreadsheet(true);
//private static final File xlsxFile = createSpreadsheet(true);
private static final File xlsFile = createSpreadsheet(false);
@Override