https://bz.apache.org/bugzilla/show_bug.cgi?id=65490
--- Comment #5 from Joan Pujol <[email protected]> --- Code to reproduce de error: try (InputStream fileStream = new FileInputStream("c:\\temp\\multiplehyperlinks.xlsx")) { XSSFWorkbook workbook = new XSSFWorkbook(fileStream); //I Streams.stream(workbook.getSheetAt(0).rowIterator()) .flatMap(row -> Streams.stream(row.cellIterator())) .filter(cell -> cell.getHyperlink() != null) .forEach(Cell::removeHyperlink); assert workbook.getSheetAt(0).getHyperlinkList().size() == 0; } -- 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]
