You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@poi.apache.org by ni...@apache.org on 2016/08/03 11:12:50 UTC

svn commit: r1755066 - /poi/trunk/src/java/org/apache/poi/hssf/usermodel/HSSFFormulaEvaluator.java

Author: nick
Date: Wed Aug  3 11:12:50 2016
New Revision: 1755066

URL: http://svn.apache.org/viewvc?rev=1755066&view=rev
Log:
Whitespace / indents

Modified:
    poi/trunk/src/java/org/apache/poi/hssf/usermodel/HSSFFormulaEvaluator.java

Modified: poi/trunk/src/java/org/apache/poi/hssf/usermodel/HSSFFormulaEvaluator.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/hssf/usermodel/HSSFFormulaEvaluator.java?rev=1755066&r1=1755065&r2=1755066&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/hssf/usermodel/HSSFFormulaEvaluator.java (original)
+++ poi/trunk/src/java/org/apache/poi/hssf/usermodel/HSSFFormulaEvaluator.java Wed Aug  3 11:12:50 2016
@@ -373,16 +373,16 @@ public class HSSFFormulaEvaluator implem
     * This is a helpful wrapper around looping over all
     *  cells, and calling evaluateFormulaCell on each one.
     */
-   @Override
-public void evaluateAll() {
-      evaluateAllFormulaCells(_book, this);
-   }
+    @Override
+    public void evaluateAll() {
+        evaluateAllFormulaCells(_book, this);
+    }
 
-	/**
-	 * Returns a CellValue wrapper around the supplied ValueEval instance.
-	 * @param cell
-	 */
-	private CellValue evaluateFormulaCellValue(Cell cell) {
+    /**
+     * Returns a CellValue wrapper around the supplied ValueEval instance.
+     * @param cell
+     */
+    private CellValue evaluateFormulaCellValue(Cell cell) {
 		ValueEval eval = _bookEvaluator.evaluate(new HSSFEvaluationCell((HSSFCell)cell));
 		if (eval instanceof BoolEval) {
 			BoolEval be = (BoolEval) eval;



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