small refactor

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1886495 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
PJ Fanning 2021-02-13 23:33:24 +00:00
parent 49fe3ba330
commit e47a48283b

View File

@ -793,18 +793,14 @@ public class XSSFSheet extends POIXMLDocumentPart implements Sheet {
return null;
}
final int row = address.getRow();
final int column = address.getColumn();
CellAddress ref = new CellAddress(row, column);
CTComment ctComment = sheetComments.getCTComment(ref);
CTComment ctComment = sheetComments.getCTComment(address);
if(ctComment == null) {
return null;
}
XSSFVMLDrawing vml = getVMLDrawing(false);
return new XSSFComment(sheetComments, ctComment,
vml == null ? null : vml.findCommentShape(row, column));
vml == null ? null : vml.findCommentShape(address.getRow(), address.getColumn()));
}
/**