fixed compilation errors on JDK 1.5

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1364926 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Yegor Kozlov 2012-07-24 07:32:47 +00:00
parent dc1453135a
commit 3132801d2c
2 changed files with 0 additions and 4 deletions

View File

@ -1266,13 +1266,11 @@ public class SXSSFSheet implements Sheet, Cloneable
} }
@Override
public CellRangeAddress getRepeatingRows() { public CellRangeAddress getRepeatingRows() {
return _sh.getRepeatingRows(); return _sh.getRepeatingRows();
} }
@Override
public CellRangeAddress getRepeatingColumns() { public CellRangeAddress getRepeatingColumns() {
return _sh.getRepeatingColumns(); return _sh.getRepeatingColumns();
} }

View File

@ -3187,13 +3187,11 @@ public class XSSFSheet extends POIXMLDocumentPart implements Sheet {
} }
@Override
public CellRangeAddress getRepeatingRows() { public CellRangeAddress getRepeatingRows() {
return getRepeatingRowsOrColums(true); return getRepeatingRowsOrColums(true);
} }
@Override
public CellRangeAddress getRepeatingColumns() { public CellRangeAddress getRepeatingColumns() {
return getRepeatingRowsOrColums(false); return getRepeatingRowsOrColums(false);
} }