Bug #56822 fix COUNTIFS()

Looks like at some point the function got added twice to the function instance map, once as null, later as the implementation.

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1783038 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Greg Woolsey 2017-02-14 22:13:48 +00:00
parent 7dfa32c28b
commit ca399b4f42
1 changed files with 1 additions and 2 deletions

View File

@ -96,7 +96,7 @@ public final class AnalysisToolPak implements UDFFinder {
r(m, "BIN2OCT", null);
r(m, "COMPLEX", Complex.instance);
r(m, "CONVERT", null);
r(m, "COUNTIFS", null);
r(m, "COUNTIFS", Countifs.instance);
r(m, "COUPDAYBS", null);
r(m, "COUPDAYS", null);
r(m, "COUPDAYSNC", null);
@ -188,7 +188,6 @@ public final class AnalysisToolPak implements UDFFinder {
r(m, "YIELD", null);
r(m, "YIELDDISC", null);
r(m, "YIELDMAT", null);
r(m, "COUNTIFS", Countifs.instance);
return m;
}