aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJaven O'Neal <onealj@apache.org>2016-06-11 00:15:00 +0000
committerJaven O'Neal <onealj@apache.org>2016-06-11 00:15:00 +0000
commitc1a3287f2a12c5c3b039f1fc8079e5c8c21ed8a1 (patch)
tree8e9a09b3f595e437e71c9467cca29db070c6c8d4
parentd47cd0cf2d442a2c8269af9264bdeda3a557fe6b (diff)
downloadpoi-c1a3287f2a12c5c3b039f1fc8079e5c8c21ed8a1.tar.gz
poi-c1a3287f2a12c5c3b039f1fc8079e5c8c21ed8a1.zip
whitespace (tabs to spaces)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1747820 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--src/java/org/apache/poi/ss/formula/udf/AggregatingUDFFinder.java44
1 files changed, 22 insertions, 22 deletions
diff --git a/src/java/org/apache/poi/ss/formula/udf/AggregatingUDFFinder.java b/src/java/org/apache/poi/ss/formula/udf/AggregatingUDFFinder.java
index 7fdfdd16c1..a2cc214216 100644
--- a/src/java/org/apache/poi/ss/formula/udf/AggregatingUDFFinder.java
+++ b/src/java/org/apache/poi/ss/formula/udf/AggregatingUDFFinder.java
@@ -6,7 +6,7 @@
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
- http://www.apache.org/licenses/LICENSE-2.0
+ http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
@@ -30,30 +30,30 @@ import java.util.Collection;
*/
public class AggregatingUDFFinder implements UDFFinder {
- private final Collection<UDFFinder> _usedToolPacks;
+ private final Collection<UDFFinder> _usedToolPacks;
- public AggregatingUDFFinder(UDFFinder ... usedToolPacks) {
+ public AggregatingUDFFinder(UDFFinder ... usedToolPacks) {
_usedToolPacks = new ArrayList<UDFFinder>(usedToolPacks.length);
- _usedToolPacks.addAll(Arrays.asList(usedToolPacks));
- }
+ _usedToolPacks.addAll(Arrays.asList(usedToolPacks));
+ }
- /**
- * Returns executor by specified name. Returns <code>null</code> if
- * function isn't contained by any registered tool pack.
- *
- * @param name Name of function.
- * @return Function executor. <code>null</code> if not found
- */
- public FreeRefFunction findFunction(String name) {
- FreeRefFunction evaluatorForFunction;
- for (UDFFinder pack : _usedToolPacks) {
- evaluatorForFunction = pack.findFunction(name);
- if (evaluatorForFunction != null) {
- return evaluatorForFunction;
- }
- }
- return null;
- }
+ /**
+ * Returns executor by specified name. Returns <code>null</code> if
+ * function isn't contained by any registered tool pack.
+ *
+ * @param name Name of function.
+ * @return Function executor. <code>null</code> if not found
+ */
+ public FreeRefFunction findFunction(String name) {
+ FreeRefFunction evaluatorForFunction;
+ for (UDFFinder pack : _usedToolPacks) {
+ evaluatorForFunction = pack.findFunction(name);
+ if (evaluatorForFunction != null) {
+ return evaluatorForFunction;
+ }
+ }
+ return null;
+ }
/**
* Add a new toolpack