use less contentious language in code comments

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1884473 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
PJ Fanning 2020-12-15 23:04:14 +00:00
parent 55f29ac344
commit 9c1eb6b18e
4 changed files with 4 additions and 4 deletions

View File

@ -3059,7 +3059,7 @@ org/apache/poi/schemas/ooxml/system/ooxml/rectaf36doctype.xsb
]]></echo>
</target>
<target name="test-env" description="tests if ant is available on the jenkins slave">
<target name="test-env" description="tests if ant is available on the jenkins worker">
<echo>Using Ant: ${ant.version} from ${ant.home}</echo>
</target>

View File

@ -601,7 +601,7 @@ xmlbeansjobs.each { xjob ->
/*
Add a special job which spans a two-dimensional matrix of all JDKs that we want to use and
all slaves that we would like to use and test if the java and ant binaries are available
all worker nodes that we would like to use and test if the java and ant binaries are available
on that machine correctly.
*/
matrixJob('POI/POI-DSL-Test-Environment') {

View File

@ -87,7 +87,7 @@ public final class CleanerUtil {
}
}
@SuppressForbidden("Java 9 Jigsaw whitelists access to sun.misc.Cleaner, so setAccessible works")
@SuppressForbidden("Java 9 Jigsaw allows access to sun.misc.Cleaner, so setAccessible works")
private static Object unmapHackImpl() {
final MethodHandles.Lookup lookup = MethodHandles.lookup();
try {

View File

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