From 0177f77dfdb7ad6dc379ae9c6492e7ea3944dbcb Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Fri, 8 Mar 2002 01:06:12 +0000 Subject: [PATCH] Regenerated with fixed gendobj. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1098 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- src/java/com/threerings/crowd/data/PlaceObject.java | 6 +++--- .../com/threerings/micasa/lobby/table/TableLobbyObject.java | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) 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); } }