formatting
[jalview.git] / src / jalview / gui / PaintRefresher.java
index 91a0978..4b40df0 100755 (executable)
@@ -26,7 +26,7 @@ import jalview.datamodel.*;
 
 /**
  * DOCUMENT ME!
- *
+ * 
  * @author $author$
  * @version $Revision$
  */
@@ -36,7 +36,7 @@ public class PaintRefresher
 
   /**
    * DOCUMENT ME!
-   *
+   * 
    * @param comp
    *          DOCUMENT ME!
    * @param al
@@ -180,14 +180,18 @@ public class PaintRefresher
       {
         if (i < comp.getHeight())
         {
-          // TODO: the following does not trigger any recalculation of height/etc, or maintain the dataset
-          if (comp.getDataset()!=source.getDataset())
+          // TODO: the following does not trigger any recalculation of
+          // height/etc, or maintain the dataset
+          if (comp.getDataset() != source.getDataset())
           {
-            // raise an implementation warning here - not sure if this situation will ever occur
-            System.err.println("IMPLEMENTATION PROBLEM: DATASET out of sync due to an insert whilst calling PaintRefresher.validateSequences(AlignmentI, ALignmentI)");
+            // raise an implementation warning here - not sure if this situation
+            // will ever occur
+            System.err
+                    .println("IMPLEMENTATION PROBLEM: DATASET out of sync due to an insert whilst calling PaintRefresher.validateSequences(AlignmentI, ALignmentI)");
           }
           List<SequenceI> alsq;
-          synchronized (alsq=comp.getSequences()) {
+          synchronized (alsq = comp.getSequences())
+          {
             alsq.add(i, a1[i]);
           }
         }
@@ -234,9 +238,17 @@ public class PaintRefresher
 
   static AlignmentPanel[] getAssociatedPanels(String id)
   {
-    if (components==null) { return new AlignmentPanel[0]; };
+    if (components == null)
+    {
+      return new AlignmentPanel[0];
+    }
+    ;
     Vector comps = (Vector) components.get(id);
-    if (comps==null) { return new AlignmentPanel[0]; };
+    if (comps == null)
+    {
+      return new AlignmentPanel[0];
+    }
+    ;
     Vector tmp = new Vector();
     int i, iSize = comps.size();
     for (i = 0; i < iSize; i++)