I\'ve created a method that should interweave two list objects and return the new, inter-weaved, list.
i.e. If aList is [A,C,E,G] & bList is [B, D, F] the metho
I believe this can be done in a more simple way, using while(iterator.hasNext()) idiom:
while(iterator.hasNext())
itrA = a.iterator(); itrB = b.iterator(); while (itrA.hasNext() || itrB.hasNext()) { if (itrA.hasNext()) newList.add(itrA.next()); if (itrB.hasNext()) newList.add(itrB.next()); }