JAL-1619 refactoring wip
[jalview.git] / src / jalview / datamodel / AlignedCodonFrame.java
index 6048808..bfac717 100644 (file)
@@ -73,18 +73,8 @@ public class AlignedCodonFrame
    * 
    * @param aWidth
    */
-  public AlignedCodonFrame(int aWidth)
+  public AlignedCodonFrame()
   {
-    if (aWidth <= 0)
-    {
-      codons = null;
-      return;
-    }
-    codons = new int[aWidth][];
-    for (int res = 0; res < aWidth; res++)
-    {
-      codons[res] = null;
-    }
   }
 
   /**