JAL-2541 remove second unnecessary if
authorJim Procter <jprocter@issues.jalview.org>
Tue, 24 Oct 2017 14:11:16 +0000 (15:11 +0100)
committerJim Procter <jprocter@issues.jalview.org>
Tue, 24 Oct 2017 14:11:16 +0000 (15:11 +0100)
src/jalview/commands/EditCommand.java

index a3ad0c2..50822ec 100644 (file)
@@ -1462,6 +1462,9 @@ public class EditCommand implements CommandI
   protected static void cutFeatures(Edit command, SequenceI seq,
           int fromPosition, int toPosition, boolean cutIsInternal)
   {
+    /* if the cut is at start or end of sequence
+     * then we don't modify the seuqence feature store
+     */
     if (!cutIsInternal)
     {
       return;
@@ -1572,12 +1575,9 @@ public class EditCommand implements CommandI
   
       /*
        * and left shift any features lying to the right of the cut region
-       * (but not if the cut is at start or end of sequence)
        */
-      if (cutIsInternal)
-      {
-        featureStore.shiftFeatures(cutEndPos + 1, -cutWidth);
-      }
+
+      featureStore.shiftFeatures(cutEndPos + 1, -cutWidth);
     }
 
     /*