]> source.dussan.org Git - poi.git/commitdiff
Bug-61947 remove deprecated method
authorPJ Fanning <fanningpj@apache.org>
Mon, 1 Jan 2018 12:23:06 +0000 (12:23 +0000)
committerPJ Fanning <fanningpj@apache.org>
Mon, 1 Jan 2018 12:23:06 +0000 (12:23 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1819763 13f79535-47bb-0310-9956-ffa450edef68

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

index c55cafa44b56e3533a7cc724a3d6cc2917d64364..a0eb3f233f7ba06b9fbc95e5e47519e3297bbb2f 100644 (file)
@@ -41,7 +41,7 @@ public final class DrawingRecord extends StandardRecord implements Cloneable {
      * @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;
     }
index ae4ef10576674e48c03d3bfff0627e0dea282424..8f1345230c6ecc4d61b2456de4566de65869ca3f 100644 (file)
@@ -332,20 +332,6 @@ public class SheetUtil {
         if (font.getUnderline() == Font.U_SINGLE ) str.addAttribute(TextAttribute.UNDERLINE, TextAttribute.UNDERLINE_ON, startIdx, endIdx);
     }
 
-    /**
-     * 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>