Modified DObjectManager.createObject() to not afford optional subscription

because subscription no longer means receiving events.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@537 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2001-10-24 00:36:40 +00:00
parent 660fccceb4
commit 57b2e93ac3
9 changed files with 24 additions and 36 deletions
@@ -1,5 +1,5 @@
//
// $Id: InvocationManager.java,v 1.9 2001/10/12 00:03:03 mdb Exp $
// $Id: InvocationManager.java,v 1.10 2001/10/24 00:36:40 mdb Exp $
package com.threerings.presents.server;
@@ -39,7 +39,7 @@ public class InvocationManager
_omgr = omgr;
// create the object on which we'll listen for invocation requests
omgr.createObject(DObject.class, this, true);
omgr.createObject(DObject.class, this);
}
public int getOid ()