diff options
author | Javen O'Neal <onealj@apache.org> | 2015-11-23 23:34:33 +0000 |
---|---|---|
committer | Javen O'Neal <onealj@apache.org> | 2015-11-23 23:34:33 +0000 |
commit | 34886a6c3f8821aa64e74bb33863538683b38919 (patch) | |
tree | a7efcd0eb5c64fdf191d75ffc59789c5078094b0 /src/ooxml | |
parent | 203358443efbc84922069549783e1a773fdfa4dc (diff) | |
download | poi-34886a6c3f8821aa64e74bb33863538683b38919.tar.gz poi-34886a6c3f8821aa64e74bb33863538683b38919.zip |
fix javadoc warnings from r1715839 bug 58365
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1715987 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/ooxml')
-rw-r--r-- | src/ooxml/java/org/apache/poi/xssf/streaming/SXSSFSheet.java | 2 | ||||
-rw-r--r-- | src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFSheet.java | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/ooxml/java/org/apache/poi/xssf/streaming/SXSSFSheet.java b/src/ooxml/java/org/apache/poi/xssf/streaming/SXSSFSheet.java index 64554c4aa5..c232286881 100644 --- a/src/ooxml/java/org/apache/poi/xssf/streaming/SXSSFSheet.java +++ b/src/ooxml/java/org/apache/poi/xssf/streaming/SXSSFSheet.java @@ -1324,7 +1324,7 @@ public class SXSSFSheet implements Sheet, Cloneable * Returns cell comment for the specified row and column * * @return cell comment or <code>null</code> if not found - * @deprecated as of 2015-11-23 (circa POI 3.14beta1). Use {@link #getCellComment(CellReference)} instead. + * @deprecated as of 2015-11-23 (circa POI 3.14beta1). Use {@link #getCellComment(CellAddress)} instead. */ @Override public XSSFComment getCellComment(int row, int column) diff --git a/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFSheet.java b/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFSheet.java index b2a4d9483b..89b7b2d3d0 100644 --- a/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFSheet.java +++ b/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFSheet.java @@ -684,10 +684,10 @@ public class XSSFSheet extends POIXMLDocumentPart implements Sheet { /** * Return cell comment at row, column, if one exists. Otherwise returns null. - * @row the row where the comment is located - * @column the column where the comment is located + * @param row the row where the comment is located + * @param column the column where the comment is located * @return the cell comment, if one exists. Otherwise return null. - * @deprecated as of 2015-11-23 (circa POI 3.14beta1). Use {@link #getCellComment(CellReference)} instead. + * @deprecated as of 2015-11-23 (circa POI 3.14beta1). Use {@link #getCellComment(CellAddress)} instead. */ @Override public XSSFComment getCellComment(int row, int column) { |