summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--build.xml2
-rw-r--r--jenkins/create_jobs.groovy2
-rw-r--r--src/java/org/apache/poi/poifs/nio/CleanerUtil.java2
-rw-r--r--src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFCell.java2
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
]]></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>
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);