diff options
author | Javen O'Neal <onealj@apache.org> | 2016-07-05 23:26:32 +0000 |
---|---|---|
committer | Javen O'Neal <onealj@apache.org> | 2016-07-05 23:26:32 +0000 |
commit | 6b8398a227285b62823ee2f5b546b5fc88aa1976 (patch) | |
tree | 09ac083891bac2b048c59dba918c43d08d0ccbc2 | |
parent | 0dc2e3e7653b4ff4b3daefe7094e87355191c786 (diff) | |
download | poi-6b8398a227285b62823ee2f5b546b5fc88aa1976.tar.gz poi-6b8398a227285b62823ee2f5b546b5fc88aa1976.zip |
+svn:eol-style=native
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1751572 13f79535-47bb-0310-9956-ffa450edef68
3 files changed, 18 insertions, 18 deletions
diff --git a/src/java/org/apache/poi/hssf/usermodel/HSSFEvaluationCell.java b/src/java/org/apache/poi/hssf/usermodel/HSSFEvaluationCell.java index d6f2d9b7b9..b524cc149a 100644 --- a/src/java/org/apache/poi/hssf/usermodel/HSSFEvaluationCell.java +++ b/src/java/org/apache/poi/hssf/usermodel/HSSFEvaluationCell.java @@ -91,8 +91,8 @@ final class HSSFEvaluationCell implements EvaluationCell { return _evalSheet; } @Override - public String getStringCellValue() {
- return _cell.getRichStringCellValue().getString();
+ public String getStringCellValue() { + return _cell.getRichStringCellValue().getString(); } /** * Will return {@link CellType} in a future version of POI. @@ -111,7 +111,7 @@ final class HSSFEvaluationCell implements EvaluationCell { */ @Internal(since="POI 3.15 beta 3") @Override - public CellType getCachedFormulaResultTypeEnum() {
- return _cell.getCachedFormulaResultTypeEnum();
- }
-}
+ public CellType getCachedFormulaResultTypeEnum() { + return _cell.getCachedFormulaResultTypeEnum(); + } +} diff --git a/src/ooxml/java/org/apache/poi/xssf/streaming/SXSSFEvaluationCell.java b/src/ooxml/java/org/apache/poi/xssf/streaming/SXSSFEvaluationCell.java index 872bd7ba83..8c11e8b8b1 100644 --- a/src/ooxml/java/org/apache/poi/xssf/streaming/SXSSFEvaluationCell.java +++ b/src/ooxml/java/org/apache/poi/xssf/streaming/SXSSFEvaluationCell.java @@ -93,8 +93,8 @@ final class SXSSFEvaluationCell implements EvaluationCell { return _evalSheet; } @Override - public String getStringCellValue() {
- return _cell.getRichStringCellValue().getString();
+ public String getStringCellValue() { + return _cell.getRichStringCellValue().getString(); } /** * Will return {@link CellType} in a future version of POI. @@ -113,7 +113,7 @@ final class SXSSFEvaluationCell implements EvaluationCell { */ @Internal(since="POI 3.15 beta 3") @Override - public CellType getCachedFormulaResultTypeEnum() {
- return _cell.getCachedFormulaResultTypeEnum();
- }
-}
+ public CellType getCachedFormulaResultTypeEnum() { + return _cell.getCachedFormulaResultTypeEnum(); + } +} diff --git a/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFEvaluationCell.java b/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFEvaluationCell.java index 9b67016341..e85b58017c 100644 --- a/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFEvaluationCell.java +++ b/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFEvaluationCell.java @@ -94,8 +94,8 @@ final class XSSFEvaluationCell implements EvaluationCell { return _evalSheet; } @Override - public String getStringCellValue() {
- return _cell.getRichStringCellValue().getString();
+ public String getStringCellValue() { + return _cell.getRichStringCellValue().getString(); } /** * Will return {@link CellType} in a future version of POI. @@ -114,7 +114,7 @@ final class XSSFEvaluationCell implements EvaluationCell { */ @Internal(since="POI 3.15 beta 3") @Override - public CellType getCachedFormulaResultTypeEnum() {
- return _cell.getCachedFormulaResultTypeEnum();
- }
-}
+ public CellType getCachedFormulaResultTypeEnum() { + return _cell.getCachedFormulaResultTypeEnum(); + } +} |