]> source.dussan.org Git - poi.git/commitdiff
Whitespace / indents
authorNick Burch <nick@apache.org>
Wed, 3 Aug 2016 11:12:50 +0000 (11:12 +0000)
committerNick Burch <nick@apache.org>
Wed, 3 Aug 2016 11:12:50 +0000 (11:12 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1755066 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/poi/hssf/usermodel/HSSFFormulaEvaluator.java

index a6f39a5f0624a17faf7c6c9c64aabaf70f553f2a..ab2602eb360d3ee0097068e16ea839f496e3bcf0 100644 (file)
@@ -373,16 +373,16 @@ public class HSSFFormulaEvaluator implements FormulaEvaluator, WorkbookEvaluator
     * 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;