diff options
author | PJ Fanning <fanningpj@apache.org> | 2021-09-23 19:03:06 +0000 |
---|---|---|
committer | PJ Fanning <fanningpj@apache.org> | 2021-09-23 19:03:06 +0000 |
commit | 4fbadb0cfd0deaa6dc331853eb755b6e8f557098 (patch) | |
tree | 24ad2074a67945668fcd712910ed2a90188fec66 /poi | |
parent | af9364710bb9cdb6ba8e1e6f82df5f1c4a8eb963 (diff) | |
download | poi-4fbadb0cfd0deaa6dc331853eb755b6e8f557098.tar.gz poi-4fbadb0cfd0deaa6dc331853eb755b6e8f557098.zip |
tabs to spaces
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1893576 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'poi')
-rw-r--r-- | poi/build.gradle | 10 | ||||
-rw-r--r-- | poi/src/main/java/org/apache/poi/ss/formula/atp/TextJoinFunction.java | 2 | ||||
-rw-r--r-- | poi/src/test/java/org/apache/poi/ss/formula/atp/TestIfna.java | 10 |
3 files changed, 11 insertions, 11 deletions
diff --git a/poi/build.gradle b/poi/build.gradle index da8eeb9ff1..96cf549b2f 100644 --- a/poi/build.gradle +++ b/poi/build.gradle @@ -167,11 +167,11 @@ task testJar(type: Jar, dependsOn: [ testClasses, cacheTest9 ]) { javadoc { dependsOn configurations.javadocs.dependencies.collect{ ':' + it.dependencyProject.name + ':compileJava' } - doFirst { - options { - classpath += files(configurations.javadocs.dependencies.collect{ it.dependencyProject.sourceSets.main.output.classesDirs }) - } - } + doFirst { + options { + classpath += files(configurations.javadocs.dependencies.collect{ it.dependencyProject.sourceSets.main.output.classesDirs }) + } + } } artifacts { diff --git a/poi/src/main/java/org/apache/poi/ss/formula/atp/TextJoinFunction.java b/poi/src/main/java/org/apache/poi/ss/formula/atp/TextJoinFunction.java index 5e3232834c..14a17854f3 100644 --- a/poi/src/main/java/org/apache/poi/ss/formula/atp/TextJoinFunction.java +++ b/poi/src/main/java/org/apache/poi/ss/formula/atp/TextJoinFunction.java @@ -56,7 +56,7 @@ final class TextJoinFunction implements FreeRefFunction { * Must be at least three arguments: * - delimiter Delimiter for joining text arguments * - ignoreEmpty If true, empty strings will be ignored in the join - * - text1 First value to be evaluated as text and joined + * - text1 First value to be evaluated as text and joined * - text2, etc. Optional additional values to be evaluated and joined */ diff --git a/poi/src/test/java/org/apache/poi/ss/formula/atp/TestIfna.java b/poi/src/test/java/org/apache/poi/ss/formula/atp/TestIfna.java index a57f197b37..87567743e4 100644 --- a/poi/src/test/java/org/apache/poi/ss/formula/atp/TestIfna.java +++ b/poi/src/test/java/org/apache/poi/ss/formula/atp/TestIfna.java @@ -33,17 +33,17 @@ import org.junit.jupiter.api.BeforeEach; * IfNa unit tests. */ class TestIfna { - + HSSFWorkbook wb; HSSFCell cell; HSSFFormulaEvaluator fe; - @BeforeEach - void setup() { + @BeforeEach + void setup() { wb = new HSSFWorkbook(); cell = wb.createSheet().createRow(0).createCell(0); fe = new HSSFFormulaEvaluator(wb); - } + } @Test void testNumbericArgsWorkCorrectly() { @@ -54,7 +54,7 @@ class TestIfna { @Test void testStringArgsWorkCorrectly() { confirmResult(fe, cell, "IFNA(\"a1\",\"a2\")", new CellValue("a1")); - confirmResult(fe, cell, "IFNA(NA(),\"a2\")", new CellValue("a2")); + confirmResult(fe, cell, "IFNA(NA(),\"a2\")", new CellValue("a2")); } @Test |