mirror of https://github.com/apache/poi.git
remove some deprecated code
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1884225 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
4be65ef93a
commit
46977210ee
|
@ -93,15 +93,6 @@ public class SheetUtil {
|
|||
public void evaluateAll() {}
|
||||
@Override
|
||||
public CellType evaluateFormulaCell(Cell cell) { return cell.getCachedFormulaResultType(); }
|
||||
/**
|
||||
* @since POI 3.15 beta 3
|
||||
* @deprecated POI 3.15 beta 3. Will be deleted when we make the CellType enum transition. See bug 59791.
|
||||
*/
|
||||
@Deprecated
|
||||
@Removal(version = "4.2")
|
||||
@Internal(since="POI 3.15 beta 3")
|
||||
@Override
|
||||
public CellType evaluateFormulaCellEnum(Cell cell) { return evaluateFormulaCell(cell); }
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
|
@ -716,7 +716,6 @@ public class TestXWPFRun {
|
|||
rpr.addNewVertAlign().setVal(STVerticalAlignRun.SUBSCRIPT);
|
||||
|
||||
XWPFRun run = new XWPFRun(ctRun, irb);
|
||||
assertEquals(VerticalAlign.SUBSCRIPT, run.getSubscript());
|
||||
|
||||
run.setSubscript(VerticalAlign.BASELINE);
|
||||
assertEquals(STVerticalAlignRun.BASELINE, rpr.getVertAlign().getVal());
|
||||
|
|
Loading…
Reference in New Issue