diff options
author | PJ Fanning <fanningpj@apache.org> | 2017-09-18 13:38:07 +0000 |
---|---|---|
committer | PJ Fanning <fanningpj@apache.org> | 2017-09-18 13:38:07 +0000 |
commit | e3ddb77bc18cd01735d3ce98afecf6ec5ab984dd (patch) | |
tree | c3b344f5c1a15519ea15ecc4e4f5d1c5e96f3bec /src/testcases | |
parent | bc0c0b19d27e1144c0abd3e284b9f924535ef50a (diff) | |
download | poi-e3ddb77bc18cd01735d3ce98afecf6ec5ab984dd.tar.gz poi-e3ddb77bc18cd01735d3ce98afecf6ec5ab984dd.zip |
update getCellType to return CellType enum instead of int
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1808703 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/testcases')
-rw-r--r-- | src/testcases/org/apache/poi/hssf/usermodel/TestHSSFCell.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/testcases/org/apache/poi/hssf/usermodel/TestHSSFCell.java b/src/testcases/org/apache/poi/hssf/usermodel/TestHSSFCell.java index f6f8892587..a9cc347bef 100644 --- a/src/testcases/org/apache/poi/hssf/usermodel/TestHSSFCell.java +++ b/src/testcases/org/apache/poi/hssf/usermodel/TestHSSFCell.java @@ -417,7 +417,7 @@ public final class TestHSSFCell extends BaseTestCell { assertEquals(wb.getWorkbook(), cell.getBoundWorkbook()); try { - cell.getCachedFormulaResultTypeEnum(); + cell.getCachedFormulaResultType(); fail("Should catch exception"); } catch (IllegalStateException e) { // expected here |