diff options
author | Javen O'Neal <onealj@apache.org> | 2015-11-23 23:52:59 +0000 |
---|---|---|
committer | Javen O'Neal <onealj@apache.org> | 2015-11-23 23:52:59 +0000 |
commit | 30dd41472447ccb7658ef6d03c6796c877b808aa (patch) | |
tree | 7f768c5cb42218a7a189387ccdeb836739b9532e /src | |
parent | 34886a6c3f8821aa64e74bb33863538683b38919 (diff) | |
download | poi-30dd41472447ccb7658ef6d03c6796c877b808aa.tar.gz poi-30dd41472447ccb7658ef6d03c6796c877b808aa.zip |
fix javadoc warnings from r1715839 bug 58365
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1715993 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src')
-rw-r--r-- | src/ooxml/java/org/apache/poi/xssf/model/CommentsTable.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ooxml/java/org/apache/poi/xssf/model/CommentsTable.java b/src/ooxml/java/org/apache/poi/xssf/model/CommentsTable.java index a8efe5ac7f..5743ac2fc6 100644 --- a/src/ooxml/java/org/apache/poi/xssf/model/CommentsTable.java +++ b/src/ooxml/java/org/apache/poi/xssf/model/CommentsTable.java @@ -135,7 +135,7 @@ public class CommentsTable extends POIXMLDocumentPart { /** * Finds the cell comment at cellAddress, if one exists * - * @param cellAddress the address of the cell to find a comment + * @param cellRef the address of the cell to find a comment * @return cell comment if one exists, otherwise returns null * @deprecated 2015-11-23 (circa POI 3.14beta1). Use {@link #findCellComment(CellAddress)} instead */ @@ -158,7 +158,7 @@ public class CommentsTable extends POIXMLDocumentPart { /** * Get the underlying CTComment xmlbean for a comment located at cellRef, if it exists * - * @param cellRef the location of the cell comment + * @param ref the location of the cell comment * @return CTComment xmlbean if comment exists, otherwise return null. * @deprecated 2015-11-23 (circa POI 3.14beta1). Use {@link CommentsTable#getCTComment(CellAddress)} instead */ @@ -304,4 +304,4 @@ public class CommentsTable extends POIXMLDocumentPart { public CTComments getCTComments(){ return comments; } -}
\ No newline at end of file +} |