diff --git a/src/java/com/threerings/crowd/data/PlaceObject.java b/src/java/com/threerings/crowd/data/PlaceObject.java index 2d382f89d..4a0bca000 100644 --- a/src/java/com/threerings/crowd/data/PlaceObject.java +++ b/src/java/com/threerings/crowd/data/PlaceObject.java @@ -1,5 +1,5 @@ // -// $Id: PlaceObject.java,v 1.3 2002/02/20 23:35:42 mdb Exp $ +// $Id: PlaceObject.java,v 1.4 2002/03/08 01:06:12 mdb Exp $ package com.threerings.crowd.data; @@ -86,9 +86,9 @@ public class PlaceObject extends DObject * change. Proxied copies of this object (on clients) will apply the * value change when they received the attribute changed notification. */ - public void setOccupantInfo (DSet value) + public void setOccupantInfo (DSet occupantInfo) { this.occupantInfo = occupantInfo; - requestAttributeChange(OCCUPANT_INFO, value); + requestAttributeChange(OCCUPANT_INFO, occupantInfo); } } diff --git a/src/java/com/threerings/micasa/lobby/table/TableLobbyObject.java b/src/java/com/threerings/micasa/lobby/table/TableLobbyObject.java index b7e7564c2..a1ff81f9f 100644 --- a/src/java/com/threerings/micasa/lobby/table/TableLobbyObject.java +++ b/src/java/com/threerings/micasa/lobby/table/TableLobbyObject.java @@ -1,5 +1,5 @@ // -// $Id: TableLobbyObject.java,v 1.2 2002/02/20 23:35:42 mdb Exp $ +// $Id: TableLobbyObject.java,v 1.3 2002/03/08 01:06:12 mdb Exp $ package com.threerings.micasa.lobby.table; @@ -81,9 +81,9 @@ public class TableLobbyObject * change. Proxied copies of this object (on clients) will apply the * value change when they received the attribute changed notification. */ - public void setTableSet (DSet value) + public void setTableSet (DSet tableSet) { this.tableSet = tableSet; - requestAttributeChange(TABLE_SET, value); + requestAttributeChange(TABLE_SET, tableSet); } }