JAL-1688 compiler warnings removed
[jalview.git] / src / jalview / datamodel / AlignedCodonFrame.java
index 4bff3a7..55df1af 100644 (file)
@@ -1,6 +1,6 @@
 /*
- * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.2)
- * Copyright (C) 2014 The Jalview Authors
+ * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
+ * Copyright (C) $$Year-Rel$$ 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.
     }
   }