Let's preserve binary compatibility with extant DObjects for a little while.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@6468 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2011-01-27 20:12:40 +00:00
parent 871cc2eb63
commit 45879635a3
@@ -920,6 +920,18 @@ public class DObject
postEvent(new ObjectRemovedEvent(_oid, name, oid, applyImmediately));
}
/** @deprecated Regenerate your DObject to remove this warning. */
@Deprecated protected void requestOidAdd (String name, int oid)
{
postEvent(new ObjectAddedEvent(_oid, name, oid, false));
}
/** @deprecated Regenerate your DObject to remove this warning. */
@Deprecated protected void requestOidRemove (String name, int oid)
{
postEvent(new ObjectRemovedEvent(_oid, name, oid, false));
}
/**
* Calls by derived instances when a set adder method was called.
*/