fix javadoc warnings from r1715839 bug 58365

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1715993 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Javen O'Neal 2015-11-23 23:52:59 +00:00
parent 4dd060e25b
commit b5494da29c
1 changed files with 3 additions and 3 deletions

View File

@ -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;
}
}
}