Bug-61947 remove deprecated method

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1819763 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
PJ Fanning 2018-01-01 12:23:06 +00:00
parent 822608f1a6
commit 272e33e4a8
2 changed files with 1 additions and 15 deletions

View File

@ -41,7 +41,7 @@ public final class DrawingRecord extends StandardRecord implements Cloneable {
* @deprecated POI 3.9 * @deprecated POI 3.9
*/ */
@Deprecated @Deprecated
public void processContinueRecord(byte[] record) { void processContinueRecord(byte[] record) {
//don't merge continue record with the drawing record, it must be serialized separately //don't merge continue record with the drawing record, it must be serialized separately
contd = record; contd = record;
} }

View File

@ -332,20 +332,6 @@ public class SheetUtil {
if (font.getUnderline() == Font.U_SINGLE ) str.addAttribute(TextAttribute.UNDERLINE, TextAttribute.UNDERLINE_ON, startIdx, endIdx); 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. * Return the cell, without taking account of merged regions.
* <p> * <p>