JAL-4090 JAL-1551 spotlessApply
[jalview.git] / src / jalview / gui / AlignFrame.java
index 4f13a78..0745b85 100644 (file)
@@ -4864,7 +4864,7 @@ public class AlignFrame extends GAlignFrame implements DropTargetListener,
                   }
                   mtch = idm.findAllIdMatches(pdbfn);
                 }
-                FileFormatI type=null;
+                FileFormatI type = null;
                 if (mtch != null)
                 {
                   try
@@ -4882,7 +4882,7 @@ public class AlignFrame extends GAlignFrame implements DropTargetListener,
                 }
                 // File wasn't named like one of the sequences or wasn't a PDB
                 // file.
-                filesnotmatched.add(new Object[] { file, protocol, type});
+                filesnotmatched.add(new Object[] { file, protocol, type });
               }
             }
             int assocfiles = 0;
@@ -4936,7 +4936,7 @@ public class AlignFrame extends GAlignFrame implements DropTargetListener,
                  */
                 for (Object[] o : filesmatched)
                 {
-                  filesnotmatched.add(new Object[] { o[0], o[1]});
+                  filesnotmatched.add(new Object[] { o[0], o[1] });
                 }
               }
             }
@@ -4960,7 +4960,8 @@ public class AlignFrame extends GAlignFrame implements DropTargetListener,
               }
               for (Object[] fn : filesnotmatched)
               {
-                loadJalviewDataFile(fn[0], (DataSourceType) fn[1], (FileFormatI)fn[2], null);
+                loadJalviewDataFile(fn[0], (DataSourceType) fn[1],
+                        (FileFormatI) fn[2], null);
               }
 
             }
@@ -5854,7 +5855,8 @@ public class AlignFrame extends GAlignFrame implements DropTargetListener,
       }
     }
     alignPanel.validateAnnotationDimensions(true);
-    // TODO this triggers relayout of annotation panel - otherwise annotation label height is different to panel height
+    // TODO this triggers relayout of annotation panel - otherwise annotation
+    // label height is different to panel height
     alignPanel.fontChanged();
     alignPanel.alignmentChanged();
   }