diff options
author | PJ Fanning <fanningpj@apache.org> | 2020-12-15 23:04:14 +0000 |
---|---|---|
committer | PJ Fanning <fanningpj@apache.org> | 2020-12-15 23:04:14 +0000 |
commit | 9c1eb6b18ee21a2e87a236d99b91f257d945f33a (patch) | |
tree | a5aec2e11c3a5c9a22eb3800fade9d2415b36807 /src/ooxml | |
parent | 55f29ac344667d4e5d3a9bb0d54b28e7396b5381 (diff) | |
download | poi-9c1eb6b18ee21a2e87a236d99b91f257d945f33a.tar.gz poi-9c1eb6b18ee21a2e87a236d99b91f257d945f33a.zip |
use less contentious language in code comments
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1884473 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/ooxml')
-rw-r--r-- | src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFCell.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFCell.java b/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFCell.java index 025726e19d..d2d135b3e2 100644 --- a/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFCell.java +++ b/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFCell.java @@ -460,7 +460,7 @@ public final class XSSFCell extends CellBase { CTCellFormula f = _cell.getF(); if (isPartOfArrayFormulaGroup()) { - /* In an excel generated array formula, the formula property might be set, but the string is empty in slave cells */ + /* In an excel generated array formula, the formula property might be set, but the string is empty in related cells */ if (f == null || f.getStringValue().isEmpty()) { XSSFCell cell = getSheet().getFirstCellInArrayFormula(this); return cell.getCellFormula(fpb); |