Let's name inner classes with an "_" where Java puts a "$", and do

automatic name translation for those names.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4129 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2006-05-19 02:23:47 +00:00
parent a2644d5c04
commit 7ec9c8d642
16 changed files with 46 additions and 58 deletions
@@ -29,7 +29,7 @@ import com.threerings.io.ObjectOutputStream;
import com.threerings.presents.dobj.DObject;
import com.threerings.presents.dobj.DSet;
import com.threerings.presents.dobj.DSetEntry;
import com.threerings.presents.dobj.DSet_Entry;
import com.threerings.presents.dobj.OidList;
import com.threerings.crowd.Log;
@@ -121,7 +121,7 @@ public class PlaceObject extends DObject
* <code>occupantInfo</code> set. The set will not change until the event is
* actually propagated through the system.
*/
public function addToOccupantInfo (elem :DSetEntry) :void
public function addToOccupantInfo (elem :DSet_Entry) :void
{
requestEntryAdd(OCCUPANT_INFO, elem);
}
@@ -141,7 +141,7 @@ public class PlaceObject extends DObject
* <code>occupantInfo</code> set. The set will not change until the event is
* actually propagated through the system.
*/
public function updateOccupantInfo (elem :DSetEntry) :void
public function updateOccupantInfo (elem :DSet_Entry) :void
{
requestEntryUpdate(OCCUPANT_INFO, elem);
}