From 9c1eb6b18ee21a2e87a236d99b91f257d945f33a Mon Sep 17 00:00:00 2001 From: PJ Fanning Date: Tue, 15 Dec 2020 23:04:14 +0000 Subject: [PATCH] use less contentious language in code comments git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1884473 13f79535-47bb-0310-9956-ffa450edef68 --- build.xml | 2 +- jenkins/create_jobs.groovy | 2 +- src/java/org/apache/poi/poifs/nio/CleanerUtil.java | 2 +- src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFCell.java | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/build.xml b/build.xml index f5333c4a75..e9e8c6aa04 100644 --- a/build.xml +++ b/build.xml @@ -3059,7 +3059,7 @@ org/apache/poi/schemas/ooxml/system/ooxml/rectaf36doctype.xsb ]]> - + Using Ant: ${ant.version} from ${ant.home} diff --git a/jenkins/create_jobs.groovy b/jenkins/create_jobs.groovy index d39ffb0fd5..cbf08361f3 100644 --- a/jenkins/create_jobs.groovy +++ b/jenkins/create_jobs.groovy @@ -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') { diff --git a/src/java/org/apache/poi/poifs/nio/CleanerUtil.java b/src/java/org/apache/poi/poifs/nio/CleanerUtil.java index 9c70ee69e1..bc05b25532 100644 --- a/src/java/org/apache/poi/poifs/nio/CleanerUtil.java +++ b/src/java/org/apache/poi/poifs/nio/CleanerUtil.java @@ -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 { 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);