]> source.dussan.org Git - poi.git/commitdiff
object-oriented methods are preferred over utility classes for discoverability
authorJaven O'Neal <onealj@apache.org>
Mon, 20 Jun 2016 01:25:23 +0000 (01:25 +0000)
committerJaven O'Neal <onealj@apache.org>
Mon, 20 Jun 2016 01:25:23 +0000 (01:25 +0000)
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

index d4fb3dbc3a3db7ee41ab03a19d42cac5b01d90de..d73c3d6184ecb8787fd72cf7ad8c5df14dfac5a5 100644 (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);