mirror of https://github.com/apache/poi.git
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:
parent
161facc089
commit
5e8665a7b7
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue