object-oriented methods are preferred over utility classes for discoverability

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1749245 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Javen O'Neal 2016-06-20 01:25:23 +00:00
parent bfa21bc5fa
commit 7c770fea4f
1 changed files with 1 additions and 0 deletions

View File

@ -325,6 +325,7 @@ public class SheetUtil {
* @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)}.
*/
public static boolean containsCell(CellRangeAddress cr, int rowIx, int colIx) {
return cr.isInRange(rowIx, colIx);