Prevent propagation of lock release events.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@2720 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2003-07-22 22:54:14 +00:00
parent ef2d31db0b
commit 76af5d2353
3 changed files with 22 additions and 4 deletions
@@ -1,5 +1,5 @@
//
// $Id: DObject.java,v 1.65 2003/07/20 17:02:26 mdb Exp $
// $Id: DObject.java,v 1.66 2003/07/22 22:54:14 mdb Exp $
package com.threerings.presents.dobj;
@@ -402,7 +402,7 @@ public class DObject implements Streamable
*/
public void notifyProxies (DEvent event)
{
if (_subs == null) {
if (_subs == null || event.isPrivate()) {
return;
}