import java.util.Iterator;
import java.util.List;
import java.util.NoSuchElementException;
-import java.util.Vector;
import java.util.concurrent.locks.ReentrantReadWriteLock;
public class HiddenColumns
AlignmentAnnotation alignmentAnnotation)
{
// mangle the alignmentAnnotation annotation array
- Vector<Annotation[]> annels = new Vector<>();
+ ArrayList<Annotation[]> annels = new ArrayList<>();
Annotation[] els = null;
int w = 0;
}
els = new Annotation[annotationLength];
- annels.addElement(els);
+ annels.add(els);
System.arraycopy(alignmentAnnotation.annotations, block[0], els, 0,
copylength);
w += annotationLength;