From 7c770fea4feec77bebafca57ee665b102037a457 Mon Sep 17 00:00:00 2001 From: Javen O'Neal Date: Mon, 20 Jun 2016 01:25:23 +0000 Subject: [PATCH] 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 --- src/java/org/apache/poi/ss/util/SheetUtil.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/java/org/apache/poi/ss/util/SheetUtil.java b/src/java/org/apache/poi/ss/util/SheetUtil.java index d4fb3dbc3a..d73c3d6184 100644 --- a/src/java/org/apache/poi/ss/util/SheetUtil.java +++ b/src/java/org/apache/poi/ss/util/SheetUtil.java @@ -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); -- 2.39.5