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:
@@ -119,7 +119,7 @@ public class TableLobbyObject extends LobbyObject
|
||||
public void setTableSet (DSet<Table> value)
|
||||
{
|
||||
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;
|
||||
}
|
||||
|
||||
|
||||
@@ -184,7 +184,7 @@ public class TourneyObject extends DObject
|
||||
public void setParticipants (DSet<Participant> value)
|
||||
{
|
||||
requestAttributeChange(PARTICIPANTS, value, this.participants);
|
||||
DSet<Participant> clone = (value == null) ? null : value.typedClone();
|
||||
DSet<Participant> clone = (value == null) ? null : value.clone();
|
||||
this.participants = clone;
|
||||
}
|
||||
// AUTO-GENERATED: METHODS END
|
||||
|
||||
@@ -89,7 +89,7 @@ public class SpotSceneObject extends SceneObject
|
||||
public void setOccupantLocs (DSet<SceneLocation> value)
|
||||
{
|
||||
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;
|
||||
}
|
||||
|
||||
@@ -136,7 +136,7 @@ public class SpotSceneObject extends SceneObject
|
||||
public void setClusters (DSet<Cluster> value)
|
||||
{
|
||||
requestAttributeChange(CLUSTERS, value, this.clusters);
|
||||
DSet<Cluster> clone = (value == null) ? null : value.typedClone();
|
||||
DSet<Cluster> clone = (value == null) ? null : value.clone();
|
||||
this.clusters = clone;
|
||||
}
|
||||
// AUTO-GENERATED: METHODS END
|
||||
|
||||
Reference in New Issue
Block a user