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:
PJ Fanning 2020-12-08 23:46:49 +00:00
parent 4be65ef93a
commit 46977210ee
2 changed files with 0 additions and 10 deletions

View File

@ -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); }
};
/**

View File

@ -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());