svn commit: r536029 - /ofbiz/trunk/framework/base/src/base/org/ofbiz/base/util/UtilMisc.java

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

svn commit: r536029 - /ofbiz/trunk/framework/base/src/base/org/ofbiz/base/util/UtilMisc.java

jaz-3
Author: jaz
Date: Mon May  7 17:22:59 2007
New Revision: 536029

URL: http://svn.apache.org/viewvc?view=rev&rev=536029
Log:
updated to use system line ending

Modified:
    ofbiz/trunk/framework/base/src/base/org/ofbiz/base/util/UtilMisc.java

Modified: ofbiz/trunk/framework/base/src/base/org/ofbiz/base/util/UtilMisc.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/base/src/base/org/ofbiz/base/util/UtilMisc.java?view=diff&rev=536029&r1=536028&r2=536029
==============================================================================
--- ofbiz/trunk/framework/base/src/base/org/ofbiz/base/util/UtilMisc.java (original)
+++ ofbiz/trunk/framework/base/src/base/org/ofbiz/base/util/UtilMisc.java Mon May  7 17:22:59 2007
@@ -170,7 +170,7 @@
             theBuf.append(entry.getKey());
             theBuf.append(" --> ");
             theBuf.append(entry.getValue());
-            theBuf.append("\n");
+            theBuf.append(System.getProperty("line.separator"));            
         }
         return theBuf.toString();
     }