JAL-2909 Tidy up bam file cigar code
[jalview.git] / src / jalview / io / FileLoader.java
index 26641b1..11432bd 100755 (executable)
@@ -308,6 +308,11 @@ public class FileLoader implements Runnable
       loadtime = -System.currentTimeMillis();
       AlignmentI al = null;
 
+      if (FileFormat.Bam.equals(format))
+      {
+        // ask the user which bit of the bam they want to load
+      }
+
       if (FileFormat.Jalview.equals(format))
       {
         if (source != null)
@@ -606,18 +611,4 @@ public class FileLoader implements Runnable
     return tempStructFile.toString();
   }
 
-  /*
-   * (non-Javadoc)
-   * 
-   * @see java.lang.Object#finalize()
-   */
-  @Override
-  protected void finalize() throws Throwable
-  {
-    source = null;
-    alignFrame = null;
-    viewport = null;
-    super.finalize();
-  }
-
 }