JAL-2849 fix
authorJim Procter <jprocter@issues.jalview.org>
Thu, 30 Nov 2017 11:28:36 +0000 (11:28 +0000)
committerJim Procter <jprocter@issues.jalview.org>
Thu, 30 Nov 2017 11:28:36 +0000 (11:28 +0000)
src/jalview/io/FormatAdapter.java

index 3027ab1..7647a16 100755 (executable)
@@ -161,7 +161,8 @@ public class FormatAdapter extends AppletFormatAdapter
 
   public boolean getCacheSuffixDefault(FileFormatI format)
   {
-    return Cache.getDefault(format.getName() + "_JVSUFFIX", true);
+    return Cache.getDefault(format.getName().toUpperCase() + "_JVSUFFIX",
+            true);
   }
 
   public String formatSequences(FileFormatI format, AlignmentI alignment,