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

Dominik Stadler <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 OS|                            |All
             Status|NEW                         |NEEDINFO

--- Comment #1 from Dominik Stadler <[email protected]> ---
I tried to reproduce this, but could not when using the trunk version of POI. I
used the following piece of code, can you provide the steps that reproduce the
problem for you (reduced to the bare minimum) so we can try to reproduce it? 

       for(Sheet sheet : wb) {
           for(Row row : sheet) {
               Cell cell = row.getCell(0);
               if(cell.getStringCellValue().equals("C")) {
                   cell.setCellValue("Completed");
               }
           }
       }
       Workbook wb2 = XSSFTestDataSamples.writeOutAndReadBack(wb);
       wb2.close();

-- 
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