JAL-3210 Barebones gradle/buildship/eclipse. See README
[jalview.git] / src / jalview / io / FileFormats.java
index e83b87c..aadcdb9 100644 (file)
@@ -20,9 +20,6 @@
  */
 package jalview.io;
 
-import jalview.bin.ApplicationSingletonProvider;
-import jalview.bin.ApplicationSingletonProvider.ApplicationSingletonI;
-
 import java.util.ArrayList;
 import java.util.HashSet;
 import java.util.LinkedHashMap;
@@ -39,11 +36,23 @@ import java.util.Set;
  * @author gmcarstairs
  *
  */
-public class FileFormats implements ApplicationSingletonI
+public class FileFormats
 {
+  private static FileFormats instance = new FileFormats();
+
+  /*
+   * A lookup map of file formats by upper-cased name
+   */
+  private static Map<String, FileFormatI> formats;
+
+  /*
+   * Formats in this set are capable of being identified by IdentifyFile 
+   */
+  private static Set<FileFormatI> identifiable;
+
   public static FileFormats getInstance()
   {
-    return (FileFormats) ApplicationSingletonProvider.getInstance(FileFormats.class);
+    return instance;
   }
 
   /**
@@ -54,16 +63,6 @@ public class FileFormats implements ApplicationSingletonI
     reset();
   }
 
-  /*
-   * A lookup map of file formats by upper-cased name
-   */
-  private Map<String, FileFormatI> formats;
-
-  /*
-   * Formats in this set are capable of being identified by IdentifyFile 
-   */
-  private Set<FileFormatI> identifiable;
-
   /**
    * Reset to just the built-in file formats packaged with Jalview. These are
    * added (and will be shown in menus) in the order of their declaration in the
@@ -71,8 +70,8 @@ public class FileFormats implements ApplicationSingletonI
    */
   public synchronized void reset()
   {
-    formats = new LinkedHashMap<>();
-    identifiable = new HashSet<>();
+    formats = new LinkedHashMap<String, FileFormatI>();
+    identifiable = new HashSet<FileFormatI>();
     for (FileFormat format : FileFormat.values())
     {
       registerFileFormat(format, format.isIdentifiable());
@@ -136,7 +135,7 @@ public class FileFormats implements ApplicationSingletonI
    */
   public List<String> getWritableFormats(boolean textOnly)
   {
-    List<String> l = new ArrayList<>();
+    List<String> l = new ArrayList<String>();
     for (FileFormatI ff : formats.values())
     {
       if (ff.isWritable() && (!textOnly || ff.isTextFormat()))
@@ -155,7 +154,7 @@ public class FileFormats implements ApplicationSingletonI
    */
   public List<String> getReadableFormats()
   {
-    List<String> l = new ArrayList<>();
+    List<String> l = new ArrayList<String>();
     for (FileFormatI ff : formats.values())
     {
       if (ff.isReadable())