Regenerated: DSets just clone() now.

git-svn-id: svn+ssh://src.earth.threerings.net/vilya/trunk@893 c613c5cb-e716-0410-b11b-feb51c14d237
This commit is contained in:
Ray Greenwell
2010-02-04 21:49:40 +00:00
parent d950cd6a51
commit 15c3a1996d
3 changed files with 4 additions and 4 deletions
@@ -119,7 +119,7 @@ public class TableLobbyObject extends LobbyObject
public void setTableSet (DSet<Table> value) public void setTableSet (DSet<Table> value)
{ {
requestAttributeChange(TABLE_SET, value, this.tableSet); requestAttributeChange(TABLE_SET, value, this.tableSet);
DSet<Table> clone = (value == null) ? null : value.typedClone(); DSet<Table> clone = (value == null) ? null : value.clone();
this.tableSet = clone; this.tableSet = clone;
} }
@@ -184,7 +184,7 @@ public class TourneyObject extends DObject
public void setParticipants (DSet<Participant> value) public void setParticipants (DSet<Participant> value)
{ {
requestAttributeChange(PARTICIPANTS, value, this.participants); requestAttributeChange(PARTICIPANTS, value, this.participants);
DSet<Participant> clone = (value == null) ? null : value.typedClone(); DSet<Participant> clone = (value == null) ? null : value.clone();
this.participants = clone; this.participants = clone;
} }
// AUTO-GENERATED: METHODS END // AUTO-GENERATED: METHODS END
@@ -89,7 +89,7 @@ public class SpotSceneObject extends SceneObject
public void setOccupantLocs (DSet<SceneLocation> value) public void setOccupantLocs (DSet<SceneLocation> value)
{ {
requestAttributeChange(OCCUPANT_LOCS, value, this.occupantLocs); requestAttributeChange(OCCUPANT_LOCS, value, this.occupantLocs);
DSet<SceneLocation> clone = (value == null) ? null : value.typedClone(); DSet<SceneLocation> clone = (value == null) ? null : value.clone();
this.occupantLocs = clone; this.occupantLocs = clone;
} }
@@ -136,7 +136,7 @@ public class SpotSceneObject extends SceneObject
public void setClusters (DSet<Cluster> value) public void setClusters (DSet<Cluster> value)
{ {
requestAttributeChange(CLUSTERS, value, this.clusters); requestAttributeChange(CLUSTERS, value, this.clusters);
DSet<Cluster> clone = (value == null) ? null : value.typedClone(); DSet<Cluster> clone = (value == null) ? null : value.clone();
this.clusters = clone; this.clusters = clone;
} }
// AUTO-GENERATED: METHODS END // AUTO-GENERATED: METHODS END