whitespace (tabs to spaces)

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1747821 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Javen O'Neal 2016-06-11 00:16:14 +00:00
parent 82134e3d8a
commit 9aaa2bd51e

View File

@ -26,13 +26,13 @@ import org.apache.poi.ss.formula.functions.FreeRefFunction;
* @author PUdalau * @author PUdalau
*/ */
public interface UDFFinder { public interface UDFFinder {
public static final UDFFinder DEFAULT = new AggregatingUDFFinder(AnalysisToolPak.instance); public static final UDFFinder DEFAULT = new AggregatingUDFFinder(AnalysisToolPak.instance);
/** /**
* Returns executor by specified name. Returns <code>null</code> if the function name is unknown. * Returns executor by specified name. Returns <code>null</code> if the function name is unknown.
* *
* @param name Name of function. * @param name Name of function.
* @return Function executor. * @return Function executor.
*/ */
FreeRefFunction findFunction(String name); FreeRefFunction findFunction(String name);
} }