JAL-2388 Alignment col and row collections with iterators
[jalview.git] / src / jalview / datamodel / AllColsIterator.java
index 4e1ff2e..67d7ba5 100644 (file)
@@ -38,15 +38,12 @@ public class AllColsIterator implements Iterator<Integer>
 
   private int current;
 
-  ColumnSelection hidden;
-
   public AllColsIterator(int firstcol, int lastcol,
           ColumnSelection hiddenCols)
   {
     last = lastcol;
     next = firstcol;
     current = firstcol;
-    hidden = hiddenCols;
   }
 
   @Override