Remove now spurious casts

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@6016 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Dave Hoover
2010-01-13 19:19:15 +00:00
parent c4d132b232
commit 1926012bc5
4 changed files with 6 additions and 8 deletions
@@ -174,7 +174,7 @@ public class PlaceManager
// update the canonical copy
_occInfo.put(info.getBodyOid(), info);
// clone the canonical copy and send an event updating the distributed set with that clone
_plobj.updateOccupantInfo((OccupantInfo)info.clone());
_plobj.updateOccupantInfo(info.clone());
return true;
}
@@ -322,7 +322,7 @@ public class PlaceManager
_plobj.startTransaction();
try {
addOccupantInfo(body, (OccupantInfo)info.clone());
addOccupantInfo(body, info.clone());
} finally {
_plobj.commitTransaction();
}