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:
@@ -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)) {
|
||||
|
||||
Reference in New Issue
Block a user