Merge remote-tracking branch 'origin/releases/Release_2_10_2b1_Branch'
[jalview.git] / src / jalview / commands / RemoveGapsCommand.java
index c8dadfa..c5c35f1 100644 (file)
@@ -109,9 +109,10 @@ public class RemoveGapsCommand extends EditCommand
 
         if (!delete && startCol > -1)
         {
-          this.appendEdit(Action.DELETE_GAP, new SequenceI[] { seqs[s] },
-                  start + startCol - deletedCols, endCol - startCol, al,
-                  false, null);
+          this.appendEdit(
+                  Action.DELETE_GAP, new SequenceI[]
+                  { seqs[s] }, start + startCol - deletedCols,
+                  endCol - startCol, al, false, null);
 
           deletedCols += (endCol - startCol);
           startCol = -1;
@@ -120,9 +121,10 @@ public class RemoveGapsCommand extends EditCommand
       }
       if (delete && startCol > -1)
       {
-        this.appendEdit(Action.DELETE_GAP, new SequenceI[] { seqs[s] },
-                start + startCol - deletedCols, jSize - startCol, al,
-                false, null);
+        this.appendEdit(
+                Action.DELETE_GAP, new SequenceI[]
+                { seqs[s] }, start + startCol - deletedCols,
+                jSize - startCol, al, false, null);
       }
 
     }