https://issues.apache.org/bugzilla/show_bug.cgi?id=56688

--- Comment #6 from [email protected] <[email protected]> ---
Code to reproduce exceptions:
public class Test {

    public static void main(String[] args) {
        try {
            FileInputStream is = new FileInputStream("edate_test1.xlsx");
            XSSFWorkbook excel = new XSSFWorkbook(is);
            is.close();
            XSSFFormulaEvaluator evaluator = new XSSFFormulaEvaluator(excel);
            evaluator.evaluateAll();
            System.out.println("OK");
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
}

-- 
You are receiving this mail because:
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to