https://issues.apache.org/bugzilla/show_bug.cgi?id=46312


Josh Micich <[EMAIL PROTECTED]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED




--- Comment #4 from Josh Micich <[EMAIL PROTECTED]>  2008-12-01 12:06:10 PST ---
Fixed in svn r722206 ( https://svn.apache.org/viewcvs.cgi?view=rev&rev=722206 ).

Next time can you try to simplify your example code that you upload.  This bug
can actually be shown with just 4 lines of code:

HSSFWorkbook wb = new HSSFWorkbook();
HSSFSheet sheet = wb.createSheet();
HSSFRow row = sheet.createRow(30);
row = sheet.createRow(30);  // << throws IllegalArgumentException


--
Adding a cell to the row before the second call to createRow() makes the bug go
away.  So your code must have been creating rows multiple times before adding
cells.  In any case, POI supports this usage now.


-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- 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