On Jan 30, 2008, at 2:25 AM, [EMAIL PROTECTED] wrote:
Author: jlaskowski
Date: Wed Jan 30 02:25:55 2008
New Revision: 616713
URL: http://svn.apache.org/viewvc?rev=616713&view=rev
Log:
Fix property handling on Windows
[..]
=
=
=
=
=
=
=
=
======================================================================
--- openejb/trunk/openejb3/container/openejb-core/src/main/java/org/
apache/openejb/util/SuperProperties.java (original)
+++ openejb/trunk/openejb3/container/openejb-core/src/main/java/org/
apache/openejb/util/SuperProperties.java Wed Jan 30 02:25:55 2008
@@ -58,7 +58,7 @@
* @see java.lang.System#getProperties
*/
public class SuperProperties extends Properties {
- private static final String LINE_SEPARATOR =
System.getProperty("line.separator");
+ private static final String LINE_SEPARATOR = "\n";
I'm not sure what issue you faced, but this fix is definitely broken
too :)
Can you elaborate?
-David