You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@poi.apache.org by on...@apache.org on 2017/10/17 07:10:25 UTC

svn commit: r1812354 - /poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/helpers/XSSFRowShifter.java

Author: onealj
Date: Tue Oct 17 07:10:25 2017
New Revision: 1812354

URL: http://svn.apache.org/viewvc?rev=1812354&view=rev
Log:
remove deprecated XSSFRowShifter.shiftMerged(int,int,int) method; replaced with RowShifter.shiftMergedRegions(int,int,int) in POI 3.15 beta 2

Modified:
    poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/helpers/XSSFRowShifter.java

Modified: poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/helpers/XSSFRowShifter.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/helpers/XSSFRowShifter.java?rev=1812354&r1=1812353&r2=1812354&view=diff
==============================================================================
--- poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/helpers/XSSFRowShifter.java (original)
+++ poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/helpers/XSSFRowShifter.java Tue Oct 17 07:10:25 2017
@@ -63,19 +63,6 @@ public final class XSSFRowShifter extend
     public XSSFRowShifter(XSSFSheet sh) {
         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



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@poi.apache.org
For additional commands, e-mail: commits-help@poi.apache.org