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:
parent
822608f1a6
commit
272e33e4a8
@ -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;
|
||||||
}
|
}
|
||||||
|
@ -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>
|
||||||
|
Loading…
Reference in New Issue
Block a user