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
@@ -93,7 +93,7 @@ public class PlaceObject extends DObject
public OccupantInfo getOccupantInfo (Name username)
{
try {
Iterator iter = occupantInfo.entries();
Iterator iter = occupantInfo.iterator();
while (iter.hasNext()) {
OccupantInfo info = (OccupantInfo)iter.next();
if (info.username.equals(username)) {