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

--- Comment #4 from [email protected] ---
I had this problem in a sheet with a duplicate created row:

            final Row h1Row = sheet.createRow(2);
            final Row h2Row = sheet.createRow(2);

It works with versions <= 4.10.

Using the correct creation

            final Row h1Row = sheet.createRow(2);
            final Row h2Row = sheet.createRow(3);

all works fine

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