Renamed DSet.entries() -> DSet.iterator().

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@3406 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2005-03-15 02:12:03 +00:00
parent 12b267dbae
commit 2d19a0ba82
6 changed files with 8 additions and 8 deletions
@@ -130,7 +130,7 @@ public class PlaceManager
public void applyToOccupants (OccupantOp op)
{
if (_plobj != null) {
Iterator iter = _plobj.occupantInfo.entries();
Iterator iter = _plobj.occupantInfo.iterator();
while (iter.hasNext()) {
op.apply((OccupantInfo)iter.next());
}