Merge branch 'kjvdh/features/PhylogenyViewer_tabbedsupport' into merge/2_11_2/kjvdh...
[jalview.git] / src / jalview / io / BioJsHTMLOutput.java
index 48988cf..5c19f94 100644 (file)
@@ -51,9 +51,9 @@ public class BioJsHTMLOutput extends HTMLOutput
   public static final String BJS_TEMPLATES_LOCAL_DIRECTORY = Cache
           .getDefault("biojs_template_directory", DEFAULT_DIR);
 
-  public static final String BJS_TEMPLATE_GIT_REPO = Cache
-          .getDefault("biojs_template_git_repo",
-                  "https://raw.githubusercontent.com/jalview/exporter-templates/master/biojs/package.json");
+  public static final String BJS_TEMPLATE_GIT_REPO = Cache.getDefault(
+          "biojs_template_git_repo",
+          "https://raw.githubusercontent.com/jalview/exporter-templates/master/biojs/package.json");
 
   public BioJsHTMLOutput(AlignmentPanel ap)
   {
@@ -66,7 +66,7 @@ public class BioJsHTMLOutput extends HTMLOutput
     File directory = new File(BJS_TEMPLATES_LOCAL_DIRECTORY);
     Objects.requireNonNull(dirName, "dirName MUST not be null!");
     Objects.requireNonNull(directory, "directory MUST not be null!");
-    TreeMap<String, File> versionFileMap = new TreeMap<String, File>();
+    TreeMap<String, File> versionFileMap = new TreeMap<>();
 
     for (File file : directory.listFiles())
     {