apply version 2.7 copyright
[jalview.git] / src / jalview / io / BLCFile.java
index c9960be..7b080a4 100755 (executable)
@@ -1,6 +1,6 @@
 /*
- * Jalview - A Sequence Alignment Editor and Viewer (Version 2.5)
- * Copyright (C) 2010 J Procter, AM Waterhouse, G Barton, M Clamp, S Searle
+ * Jalview - A Sequence Alignment Editor and Viewer (Version 2.7)
+ * Copyright (C) 2011 J Procter, AM Waterhouse, G Barton, M Clamp, S Searle
  * 
  * This file is part of Jalview.
  * 
@@ -142,7 +142,7 @@ public class BLCFile extends AlignFile
         {
           // header lines - keep them for the alignment comments.
           headerLines.append(line);
-          headerLines.append("\n");
+          headerLines.append(newline);
           numHeaderLines++;
         }
       } while (!idsFound);
@@ -240,7 +240,7 @@ public class BLCFile extends AlignFile
         out.append(" " + s[i].getDescription());
       }
 
-      out.append("\n");
+      out.append(newline);
 
       if (s[i].getSequence().length > max)
       {
@@ -250,7 +250,8 @@ public class BLCFile extends AlignFile
       i++;
     }
 
-    out.append("* iteration 1\n");
+    out.append("* iteration 1");
+    out.append(newline);
 
     for (int j = 0; j < max; j++)
     {
@@ -270,10 +271,11 @@ public class BLCFile extends AlignFile
         i++;
       }
 
-      out.append("\n");
+      out.append(newline);
     }
 
-    out.append("*\n");
+    out.append("*");
+    out.append(newline);
 
     return out.toString();
   }