// LOGGER.fine("I've already expanded from " + node);
} else {
componentNodes.add(node);
// LOGGER.finer("Adding " + node + " to component");
Vector adjacentEdges = findAdjacentEdges(node, edges); //yes, I know node.getEdges() should do this, but this method could be out of data by the time I use this in AutoClust
adjacentEdges.trimToSize();
componentEdges.addAll(adjacentEdges);
// LOGGER.finer("Adding " + adjacentEdges + " to component");
Iterator aeIt = adjacentEdges.iterator();
while (aeIt.hasNext()){