Author: fanningpj
Date: Mon Jan  1 12:23:06 2018
New Revision: 1819763

URL: http://svn.apache.org/viewvc?rev=1819763&view=rev
Log:
Bug-61947 remove deprecated method

Modified:
    poi/trunk/src/java/org/apache/poi/hssf/record/DrawingRecord.java
    poi/trunk/src/java/org/apache/poi/ss/util/SheetUtil.java

Modified: poi/trunk/src/java/org/apache/poi/hssf/record/DrawingRecord.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/hssf/record/DrawingRecord.java?rev=1819763&r1=1819762&r2=1819763&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/hssf/record/DrawingRecord.java (original)
+++ poi/trunk/src/java/org/apache/poi/hssf/record/DrawingRecord.java Mon Jan  1 
12:23:06 2018
@@ -41,7 +41,7 @@ public final class DrawingRecord extends
      * @deprecated POI 3.9
      */
     @Deprecated
-    public void processContinueRecord(byte[] record) {
+    void processContinueRecord(byte[] record) {
         //don't merge continue record with the drawing record, it must be 
serialized separately
         contd = record;
     }

Modified: poi/trunk/src/java/org/apache/poi/ss/util/SheetUtil.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/ss/util/SheetUtil.java?rev=1819763&r1=1819762&r2=1819763&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/ss/util/SheetUtil.java (original)
+++ poi/trunk/src/java/org/apache/poi/ss/util/SheetUtil.java Mon Jan  1 
12:23:06 2018
@@ -333,20 +333,6 @@ public class SheetUtil {
     }
 
     /**
-     * Check if the cell is in the specified cell range
-     *
-     * @param cr    the cell range to check in
-     * @param rowIx the row to check
-     * @param colIx the column to check
-     * @return true if the range contains the cell [rowIx, colIx]
-     * @deprecated 3.15 beta 2. Use {@link CellRangeAddressBase#isInRange(int, 
int)}.
-     */
-    @Deprecated
-    public static boolean containsCell(CellRangeAddress cr, int rowIx, int 
colIx) {
-        return cr.isInRange(rowIx,  colIx);
-    }
-
-    /**
      * Return the cell, without taking account of merged regions.
      * <p>
      * Use {@link #getCellWithMerges(Sheet, int, int)} if you want the top left



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

Reply via email to