JAL-1645 source formatting and organise imports
[jalview.git] / src / jalview / commands / RemoveGapColCommand.java
index 490dc4a..3266874 100644 (file)
@@ -88,8 +88,7 @@ public class RemoveGapColCommand extends EditCommand
       if (!delete && startCol > -1)
       {
         this.appendEdit(Action.DELETE_GAP, seqs, startCol - columnsDeleted,
-                endCol
-                - startCol, al, false, null);
+                endCol - startCol, al, false, null);
 
         columnsDeleted += (endCol - startCol);
         startCol = -1;
@@ -103,8 +102,7 @@ public class RemoveGapColCommand extends EditCommand
       // end of the alignment
 
       this.appendEdit(Action.DELETE_GAP, seqs, startCol - columnsDeleted,
-              end
-              - startCol + 1, al, false, null);
+              end - startCol + 1, al, false, null);
 
       columnsDeleted += (end - startCol + 1);
     }