I\'m having problems with Iterator.remove() called on a HashSet.
I\'ve a Set of time stamped objects. Before adding a new item to the Set, I loop through the set, i
I'm not up to speed on my Java, but I know that you can't remove an item from a collection when you are iterating over that collection in .NET, although .NET will throw an exception if it catches this. Could this be the problem?