JAL-1807 - Bob's last(?) before leaving Dundee -- adds fast file loading
[jalviewjs.git] / src / jalview / io / IdentifyFile.java
index 14848c7..f7c4286 100644 (file)
@@ -20,7 +20,6 @@
  */
 package jalview.io;
 
-import jalview.jsdev.Constants;
 import jalview.jsdev.GenericFileAdapter;
 
 import java.io.IOException;
@@ -148,7 +147,7 @@ public class IdentifyFile
         // if (data.matches("<(\"[^\"]*\"|'[^']*'|[^'\">])*>"))
         if (data.matches("<HTML(\"[^\"]*\"|'[^']*'|[^'\">])*>")) // BH was (?i)rnaml, but JavaScript regex does not support (?i); data is already upper case
         {
-          reply = Constants.Html_FILE_DESC;
+          reply = GenericFileAdapter.Html_FILE_DESC;
           break;
         }
 
@@ -160,7 +159,7 @@ public class IdentifyFile
 
          if (data.indexOf("{\"") > -1)
          {
-         reply = Constants.JSON_FILE_DESC;
+         reply = GenericFileAdapter.JSON_FILE_DESC;
          break;
          }
         if ((data.length() < 1) || (data.indexOf("#") == 0))
@@ -290,7 +289,7 @@ public class IdentifyFile
         }
         else if (data.matches("\\s*\\d+\\s+\\d+\\s*"))
         {
-          reply = Constants.Phylip_FILE_DESC;
+          reply = GenericFileAdapter.Phylip_FILE_DESC;
           break;
         }