JAL-727
authorjprocter <Jim Procter>
Wed, 5 Jan 2011 15:37:11 +0000 (15:37 +0000)
committerjprocter <Jim Procter>
Wed, 5 Jan 2011 15:37:11 +0000 (15:37 +0000)
src/jalview/io/AlignmentProperties.java

index 3b25b49..8d3e56a 100644 (file)
@@ -33,7 +33,7 @@ public class AlignmentProperties
    */
   public void writeProperties(PrintWriter pw, boolean html)
   {
-    final String nl = html ? "<br>" : "\n";
+    final String nl = html ? "<br>" : System.getProperty("line.separator");
     float avg = 0;
     int min = Integer.MAX_VALUE, max = 0;
     for (int i = 0; i < alignment.getHeight(); i++)
@@ -93,7 +93,7 @@ public class AlignmentProperties
         }
         else
         {
-          pw.print("\n" + key + "\t" + vals);
+          pw.print(nl + key + "\t" + vals);
         }
       }
       if (html)