DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://nagoya.apache.org/bugzilla/show_bug.cgi?id=13294>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=13294 break should be continue in RowRecordsAggregate Summary: break should be continue in RowRecordsAggregate Product: POI Version: 2.0-dev Platform: All OS/Version: All Status: NEW Severity: Normal Priority: Other Component: HSSF AssignedTo: [EMAIL PROTECTED] ReportedBy: [EMAIL PROTECTED] As far as I can tell, this simply a typo. Without this change, my spreadsheet is missing rows. RCS file: /home/cvspublic/jakarta- poi/src/java/org/apache/poi/hssf/record/aggregates/RowRecordsAggregate.java,v retrieving revision 1.4 diff -u -r1.4 RowRecordsAggregate.java --- src/java/org/apache/poi/hssf/record/aggregates/RowRecordsAggregate.java5 Sep 2002 00:26:26 -00001.4 +++ src/java/org/apache/poi/hssf/record/aggregates/RowRecordsAggregate.java2 Oct 2002 13:56:05 -0000 @@ -145,7 +145,7 @@ if (!rec.isInValueSection() && !(rec instanceof UnknownRecord)) { - break; + continue; } if (rec.getSid() == RowRecord.sid) { -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
