You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@poi.apache.org by on...@apache.org on 2016/06/11 00:15:00 UTC

svn commit: r1747820 - /poi/trunk/src/java/org/apache/poi/ss/formula/udf/AggregatingUDFFinder.java

Author: onealj
Date: Sat Jun 11 00:15:00 2016
New Revision: 1747820

URL: http://svn.apache.org/viewvc?rev=1747820&view=rev
Log:
whitespace (tabs to spaces)

Modified:
    poi/trunk/src/java/org/apache/poi/ss/formula/udf/AggregatingUDFFinder.java

Modified: poi/trunk/src/java/org/apache/poi/ss/formula/udf/AggregatingUDFFinder.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/ss/formula/udf/AggregatingUDFFinder.java?rev=1747820&r1=1747819&r2=1747820&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/ss/formula/udf/AggregatingUDFFinder.java (original)
+++ poi/trunk/src/java/org/apache/poi/ss/formula/udf/AggregatingUDFFinder.java Sat Jun 11 00:15:00 2016
@@ -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



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@poi.apache.org
For additional commands, e-mail: commits-help@poi.apache.org