JAL-4020 class reformatting
[jalview.git] / src / jalview / ext / pymol / PymolManager.java
index d3b8ece..358e360 100644 (file)
@@ -36,7 +36,6 @@ import java.util.List;
 import jalview.bin.Cache;
 import jalview.bin.Console;
 import jalview.gui.Preferences;
-import jalview.structure.StructureCommand;
 import jalview.structure.StructureCommandI;
 
 public class PymolManager
@@ -100,22 +99,23 @@ public class PymolManager
     }
     else if (os.startsWith("Windows"))
     {
-       for (String root : new String[] {
-        String.format("%s\\AppData\\Local", System.getProperty("user.home")), // default user path
-        "\\ProgramData", "C:\\ProgramData", // this is the default install path "for everyone"
-        System.getProperty("user.home"),
-               "\\Program Files", "C:\\Program Files", "\\Program Files (x86)",
-               "C:\\Program Files (x86)" })
-       {
-         for (String path : new String [] {
-           "Schrodinger\\PyMOL2", "PyMOL" })
+      for (String root : new String[] {
+          String.format("%s\\AppData\\Local",
+                  System.getProperty("user.home")), // default user path
+          "\\ProgramData", "C:\\ProgramData", // this is the default install
+                                              // path "for everyone"
+          System.getProperty("user.home"), "\\Program Files",
+          "C:\\Program Files", "\\Program Files (x86)",
+          "C:\\Program Files (x86)" })
+      {
+        for (String path : new String[] { "Schrodinger\\PyMOL2", "PyMOL" })
         {
-          for (String binary : new String [] {"PyMOLWinWithConsole.bat"})
+          for (String binary : new String[] { "PyMOLWinWithConsole.bat" })
           {
             pathList.add(String.format("%s\\%s\\%s", root, path, binary));
           }
         }
-       }
+      }
     }
     else if (os.startsWith("Mac"))
     {