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: ReleaseLockEvent.java,v 1.7 2002/12/20 23:29:04 mdb Exp $
// $Id: ReleaseLockEvent.java,v 1.8 2003/07/22 22:54:14 mdb Exp $
package com.threerings.presents.dobj;
@@ -36,6 +36,13 @@ public class ReleaseLockEvent extends NamedEvent
{
}
// documentation inherited
public boolean isPrivate ()
{
// we need only run on the server; no need to propagate to proxies
return true;
}
/**
* Applies this lock release to the object.
*/