code clean-up (removed compiler warnings/unused methods)

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@696860 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Josh Micich 2008-09-19 00:02:21 +00:00
parent c5a00d78c9
commit 26b458016e
2 changed files with 12 additions and 21 deletions

View File

@ -17,8 +17,6 @@
package org.apache.poi.hssf.record.formula;
import org.apache.poi.ss.formula.FormulaRenderingWorkbook;
/**
* defines a Ptg that is an operation instead of an operand
* @author andy
@ -48,10 +46,4 @@ public abstract class OperationPtg extends Ptg {
// TODO remove "int getType();" from Eval hierarchy
throw new RuntimeException("remove this method");
}
public String toFormulaString(FormulaRenderingWorkbook book) {
// TODO Auto-generated method stub
return null;
}
}

View File

@ -18,7 +18,6 @@
package org.apache.poi.hssf.record.formula;
import org.apache.poi.hssf.record.RecordInputStream;
import org.apache.poi.hssf.usermodel.HSSFWorkbook;
import org.apache.poi.hssf.util.CellReference;
import org.apache.poi.ss.formula.WorkbookDependentFormula;
import org.apache.poi.ss.formula.FormulaRenderingWorkbook;