You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@poi.apache.org by bu...@apache.org on 2016/02/17 22:41:39 UTC

[Bug 53178] RunTimeException: "Unexpected tAttr" in getCellFormula()

https://bz.apache.org/bugzilla/show_bug.cgi?id=53178

--- Comment #3 from Dominik Stadler <do...@gmx.at> ---
Still reproducible in 3.14-beta1 with the following unit-test

    @Test
    public void test53178() {
        Workbook wb = HSSFTestDataSamples.openSampleWorkbook("53178.xls");
        Sheet sheet = wb.getSheetAt(0);
        Row row = sheet.getRow(0);
        Cell cell = row.getCell(0);

        assertEquals(Cell.CELL_TYPE_FORMULA, cell.getCellType());
        assertEquals("", cell.getCellFormula());
    }

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

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