Add @Override annotations, clean up imports

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1817331 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Greg Woolsey 2017-12-07 01:54:21 +00:00
parent 1d2c550dbe
commit 990b52390f
5 changed files with 4 additions and 1 deletions

View File

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

View File

@ -17,7 +17,6 @@
package org.apache.poi.ss.formula;
import org.apache.poi.ss.usermodel.Sheet;
import org.apache.poi.util.Internal;
/**

View File

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

View File

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

View File

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