Browse Source

small refactor

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1886495 13f79535-47bb-0310-9956-ffa450edef68
tags/REL_5_1_0
PJ Fanning 3 years ago
parent
commit
e47a48283b
1 changed files with 2 additions and 6 deletions
  1. 2
    6
      src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFSheet.java

+ 2
- 6
src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFSheet.java 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()));
}

/**

Loading…
Cancel
Save