#61841 fix typo in method name

Fixing the typo pointed out by PJ Fanning, thanks for the proof read!

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1817325 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Greg Woolsey 2017-12-06 23:53:25 +00:00
parent 94c2b64692
commit cbd17b9320
6 changed files with 7 additions and 7 deletions

View File

@ -43,7 +43,7 @@ final class HSSFEvaluationSheet implements EvaluationSheet {
* @see org.apache.poi.ss.formula.EvaluationSheet#getlastRowNum()
* @since POI 4.0.0
*/
public int getlastRowNum() {
public int getLastRowNum() {
return _lastDefinedRow;
}

View File

@ -48,5 +48,5 @@ public interface EvaluationSheet {
* @return last row index referenced on this sheet, for evaluation optimization
* @since POI 4.0.0
*/
public int getlastRowNum();
public int getLastRowNum();
}

View File

@ -183,7 +183,7 @@ final class FormulaUsedBlankCellSet {
BlankCellSheetGroup result = _sheetGroupsByBookSheet.get(key);
if (result == null) {
result = new BlankCellSheetGroup(evalWorkbook.getSheet(sheetIndex).getlastRowNum());
result = new BlankCellSheetGroup(evalWorkbook.getSheet(sheetIndex).getLastRowNum());
_sheetGroupsByBookSheet.put(key, result);
}
return result;

View File

@ -57,8 +57,8 @@ final class ForkedEvaluationSheet implements EvaluationSheet {
* @see org.apache.poi.ss.formula.EvaluationSheet#getlastRowNum()
* @since POI 4.0.0
*/
public int getlastRowNum() {
return _masterSheet.getlastRowNum();
public int getLastRowNum() {
return _masterSheet.getLastRowNum();
}
@Override

View File

@ -42,7 +42,7 @@ final class SXSSFEvaluationSheet implements EvaluationSheet {
* @see org.apache.poi.ss.formula.EvaluationSheet#getlastRowNum()
* @since POI 4.0.0
*/
public int getlastRowNum() {
public int getLastRowNum() {
return _lastDefinedRow;
}

View File

@ -49,7 +49,7 @@ final class XSSFEvaluationSheet implements EvaluationSheet {
* @see org.apache.poi.ss.formula.EvaluationSheet#getlastRowNum()
* @since POI 4.0.0
*/
public int getlastRowNum() {
public int getLastRowNum() {
return _lastDefinedRow;
}