JAL-2674 tidied up CigarArray
[jalview.git] / src / jalview / datamodel / CigarArray.java
index 2aa3efb..b6708ac 100644 (file)
@@ -172,17 +172,6 @@ public class CigarArray extends CigarBase
         hideStart = region[0];
         hideEnd = region[1];
 
-        // just move on if hideEnd is before last
-        if (hideEnd < last)
-        {
-          continue;
-        }
-        // exit if next region is after end
-        if (hideStart > end)
-        {
-          break;
-        }
-
         // truncate region at start if last falls in region
         if ((hideStart < last) && (hideEnd >= last))
         {