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=38424>. 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=38424 ------- Additional Comments From [EMAIL PROTECTED] 2006-01-27 20:23 ------- Here is a patch for this issue: This was generated using the diff command -x and -u options. Index: bcel/src/java/org/apache/bcel/classfile/LineNumberTable.java =================================================================== --- bcel/src/java/org/apache/bcel/classfile/LineNumberTable.java (revision 372884) +++ bcel/src/java/org/apache/bcel/classfile/LineNumberTable.java (working copy) @@ -122,6 +122,7 @@ public final String toString() { StringBuffer buf = new StringBuffer(); StringBuffer line = new StringBuffer(); + String newLine = System.getProperty("line.separator", "\n"); for(int i=0; i < line_number_table_length; i++) { line.append(line_number_table[i].toString()); @@ -130,8 +131,8 @@ line.append(", "); if(line.length() > 72) { - line.append('\n'); - buf.append(line); + line.append(newLine); + buf.append(line.toString()); line.setLength(0); } } -- 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. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]