FunctionEval is a utility class. It should not have a public default constructor

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1748830 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Javen O'Neal 2016-06-17 10:47:13 +00:00
parent 26d3072b1e
commit be7fd6ffb6

View File

@ -31,6 +31,10 @@ import org.apache.poi.ss.formula.functions.*;
* (where available) * (where available)
*/ */
public final class FunctionEval { public final class FunctionEval {
private FunctionEval() {
// no instances of this class
}
/** /**
* Some function IDs that require special treatment * Some function IDs that require special treatment
*/ */