whitespace (tabs to spaces); +props svn:eol-style=native

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1747839 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Javen O'Neal 2016-06-11 02:12:43 +00:00
parent e3beb3abdd
commit 69ded5b7b0

View File

@ -40,6 +40,7 @@ final class XSSFEvaluationSheet implements EvaluationSheet {
public XSSFSheet getXSSFSheet() {
return _xs;
}
public EvaluationCell getCell(int rowIndex, int columnIndex) {
// cache for performance: ~30% speedup due to caching
if (_cellCache == null) {
@ -56,7 +57,6 @@ final class XSSFEvaluationSheet implements EvaluationSheet {
}
return _cellCache.get(new CellKey(rowIndex, columnIndex));
}
private static class CellKey {