remove deprecated XSSFRowShifter.shiftMerged(int,int,int) method; replaced with RowShifter.shiftMergedRegions(int,int,int) in POI 3.15 beta 2

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1812354 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Javen O'Neal 2017-10-17 07:10:25 +00:00
parent e5f8463381
commit 7eb6686b1d

View File

@ -64,19 +64,6 @@ public final class XSSFRowShifter extends RowShifter {
super(sh);
}
/**
* Shift merged regions
*
* @param startRow the row to start shifting
* @param endRow the row to end shifting
* @param n the number of rows to shift
* @return an array of merged cell regions
* @deprecated POI 3.15 beta 2. Use {@link #shiftMergedRegions(int, int, int)} instead.
*/
public List<CellRangeAddress> shiftMerged(int startRow, int endRow, int n) {
return shiftMergedRegions(startRow, endRow, n);
}
/**
* Updated named ranges
*/