+svn:eol-style=native

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1751572 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Javen O'Neal 2016-07-05 23:26:32 +00:00
parent 93f1f4b027
commit b37fde6d96
3 changed files with 18 additions and 18 deletions

View File

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

View File

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

View File

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