mistakenly uploaded test version
[jalview.git] / src / jalview / io / FileFormat.java
index df76c61..cb61740 100644 (file)
@@ -29,21 +29,6 @@ import java.io.IOException;
 
 public enum FileFormat implements FileFormatI
 {
-  BSML("BSML", "bbb", true, false)
-  {
-    @Override
-    public AlignmentFileReaderI getReader(FileParse source)
-            throws IOException
-    {
-      return new BSMLFile(source);
-    }
-
-    @Override
-    public AlignmentFileWriterI getWriter(AlignmentI al)
-    {
-      return null;
-    }
-  },
   Fasta("Fasta", "fa, fasta, mfa, fastq", true, true)
   {
     @Override