From a6629029748cb5aab9f7380c2293178ef53b0a25 Mon Sep 17 00:00:00 2001 From: Javen O'Neal Date: Fri, 17 Jun 2016 10:47:13 +0000 Subject: [PATCH] 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 --- src/java/org/apache/poi/ss/formula/eval/FunctionEval.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/java/org/apache/poi/ss/formula/eval/FunctionEval.java b/src/java/org/apache/poi/ss/formula/eval/FunctionEval.java index 0c7de9722f..d2a4d39bad 100644 --- a/src/java/org/apache/poi/ss/formula/eval/FunctionEval.java +++ b/src/java/org/apache/poi/ss/formula/eval/FunctionEval.java @@ -31,6 +31,10 @@ import org.apache.poi.ss.formula.functions.*; * (where available) */ public final class FunctionEval { + private FunctionEval() { + // no instances of this class + } + /** * Some function IDs that require special treatment */ -- 2.39.5