JAL-1620 version bump and release notes
[jalview.git] / src / jalview / datamodel / AlignedCodonFrame.java
index 4bff3a7..fa0f312 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.2)
+ * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.2b1)
  * Copyright (C) 2014 The Jalview Authors
  * 
  * This file is part of Jalview.
@@ -123,7 +123,8 @@ public class AlignedCodonFrame
     if (aspos < aaWidth)
     {
       aaWidth++;
-      System.arraycopy(codons, aspos, codons, aspos + 1, codons.length - aspos - 1);
+      System.arraycopy(codons, aspos, codons, aspos + 1, codons.length
+              - aspos - 1);
       codons[aspos] = null; // clear so new codon position can be marked.
     }
   }