瀏覽代碼

Bug-61947 remove deprecated method

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1819763 13f79535-47bb-0310-9956-ffa450edef68
tags/REL_4_0_0_FINAL
PJ Fanning 6 年之前
父節點
當前提交
8e1ffb56f8

+ 1
- 1
src/java/org/apache/poi/hssf/record/DrawingRecord.java 查看文件

@@ -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;
}

+ 0
- 14
src/java/org/apache/poi/ss/util/SheetUtil.java 查看文件

@@ -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>

Loading…
取消
儲存