On Dec 26, 2009, at 5:00 PM, Bryan McCormick wrote:
What appears to be going on is that the Iterable<Text> values seemed to be reusing the Text object being exposed in the for loop and just changing the content of the Text.
That is correct.
activeList.add(new Text(val.toString));
It would be more efficient to just do: activeList.add(new Text(val)); -- Owen
