https://bz.apache.org/bugzilla/show_bug.cgi?id=63509
--- Comment #2 from [email protected] --- Workaround: CellReference has this constructor which ensures that _sheetName is null: public CellReference(int pRow, int pCol, boolean pAbsRow, boolean pAbsCol) { this(null, pRow, pCol, pAbsRow, pAbsCol); } So call that constructor like this: XSSFSheet sheet; Cell cell; sheet.addIgnoredErrors(new CellReference(cell.getRowIndex(), cell.getColumnIndex(), false, false), IgnoredErrorType.NUMBER_STORED_AS_TEXT); -- 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]
