Browse Source

#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
pull/84/head^2
Greg Woolsey 6 years ago
parent
commit
cbd17b9320

+ 1
- 1
src/java/org/apache/poi/hssf/usermodel/HSSFEvaluationSheet.java 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;
}

+ 1
- 1
src/java/org/apache/poi/ss/formula/EvaluationSheet.java 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();
}

+ 1
- 1
src/java/org/apache/poi/ss/formula/FormulaUsedBlankCellSet.java 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;

+ 2
- 2
src/java/org/apache/poi/ss/formula/eval/forked/ForkedEvaluationSheet.java 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

+ 1
- 1
src/ooxml/java/org/apache/poi/xssf/streaming/SXSSFEvaluationSheet.java 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;
}

+ 1
- 1
src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFEvaluationSheet.java 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;
}

Loading…
Cancel
Save