House offer
I made an offer on a third house last night. Maybe this time it will go through. I broke my realitor's record for number of offers made before buying a house.
while (iter.hasNext())
{
SummaryObject obj = (SummaryObject) iter.next();
SummaryObject newObj = obj.newInstance();
newObj.setGroup(currGroup);
newSummaryObjs.add(newObj);
}
While the decompiled code was:
SummaryObject newObj;
for(; iter.hasNext(); newSummaryObjs.add(newObj))
{
SummaryObject obj = (SummaryObject)iter.next();
newObj = obj.newInstance();
newObj.setGroup(currGroup);
}
It looked like all while loops were turned into for loops. Interesting to see how the compiler would optimize things.