diff options
author | Javen O'Neal <onealj@apache.org> | 2016-06-20 01:25:23 +0000 |
---|---|---|
committer | Javen O'Neal <onealj@apache.org> | 2016-06-20 01:25:23 +0000 |
commit | 7c770fea4feec77bebafca57ee665b102037a457 (patch) | |
tree | 3aabe7a1dcc01edc9af94b7969ccf85e1103416a /src/java/org | |
parent | bfa21bc5fa5d9177c969bdb66469ae2608e121b9 (diff) | |
download | poi-7c770fea4feec77bebafca57ee665b102037a457.tar.gz poi-7c770fea4feec77bebafca57ee665b102037a457.zip |
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
Diffstat (limited to 'src/java/org')
-rw-r--r-- | src/java/org/apache/poi/ss/util/SheetUtil.java | 1 |
1 files changed, 1 insertions, 0 deletions
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); |