DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUGĀ· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=43237>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED ANDĀ· INSERTED IN THE BUG DATABASE.
http://issues.apache.org/bugzilla/show_bug.cgi?id=43237 ------- Additional Comments From [EMAIL PROTECTED] 2007-09-18 09:24 ------- I did an other workaround, that seems to work: I changed ========================================== private void resetFootnotes(LinkedList elementLists) { for (int i = 0; i < elementLists.size(); i++) { LinkedList removedList = (LinkedList) footnotesList.remove(footnotesList.size() - 1); lengthList.remove(lengthList.size() - 1); // update totalFootnotesLength if (lengthList.size() > 0) { totalFootnotesLength = ((Integer) lengthList.get(lengthList.size() - 1)).intValue(); } else { totalFootnotesLength = 0; } } // update footnotesPending; if (footnotesList.size() == 0) { footnotesPending = false; } } ================================================= to ================================================= private void resetFootnotes(LinkedList elementLists) { for (int i = 0; i < elementLists.size(); i++) { LinkedList removedList = (LinkedList) footnotesList.remove(footnotesList.size() - 1); lengthList.remove(lengthList.size() - 1); // update totalFootnotesLength if (lengthList.size() > 0) { totalFootnotesLength = ((Integer) lengthList.get(lengthList.size() - 1)).intValue(); } else { totalFootnotesLength = 0; } } footnoteListIndex = footnotesList.size() - 1; // update footnotesPending; if (footnotesList.size() == 0) { footnotesPending = false; } } ================================================= (difference is only adding one line) BTW: my FO is very huge too (about 1.7 MB) -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee.
