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=35723>. 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=35723 ------- Additional Comments From [EMAIL PROTECTED] 2005-07-25 20:17 ------- Just noticed you forgot the assignment on your EOL fix: Index: src/java/org/apache/commons/betwixt/io/BeanWriter.java =================================================================== --- src/java/org/apache/commons/betwixt/io/BeanWriter.java (revision 225153) +++ src/java/org/apache/commons/betwixt/io/BeanWriter.java (working copy) @@ -86,7 +86,7 @@ // just wraps call in an exception check for access restricted environments String result = "\n"; try { - System.getProperty( "line.separator", "\n" ); + result = System.getProperty( "line.separator", "\n" ); } catch (SecurityException se) { Log log = LogFactory.getLog( BeanWriter.class ); log.warn("Cannot load line separator property: " + se.getMessage()); -- 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]
