You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@poi.apache.org by on...@apache.org on 2016/06/17 10:47:13 UTC

svn commit: r1748830 - /poi/trunk/src/java/org/apache/poi/ss/formula/eval/FunctionEval.java

Author: onealj
Date: Fri Jun 17 10:47:13 2016
New Revision: 1748830

URL: http://svn.apache.org/viewvc?rev=1748830&view=rev
Log:
FunctionEval is a utility class. It should not have a public default constructor

Modified:
    poi/trunk/src/java/org/apache/poi/ss/formula/eval/FunctionEval.java

Modified: poi/trunk/src/java/org/apache/poi/ss/formula/eval/FunctionEval.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/ss/formula/eval/FunctionEval.java?rev=1748830&r1=1748829&r2=1748830&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/ss/formula/eval/FunctionEval.java (original)
+++ poi/trunk/src/java/org/apache/poi/ss/formula/eval/FunctionEval.java Fri Jun 17 10:47:13 2016
@@ -31,6 +31,10 @@ import org.apache.poi.ss.formula.functio
  *  (where available)
  */
 public final class FunctionEval {
+    private FunctionEval() {
+        // no instances of this class
+    }
+
     /**
      * Some function IDs that require special treatment
      */



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@poi.apache.org
For additional commands, e-mail: commits-help@poi.apache.org