Fixing a typo that prevented the creation of lock release handlers.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4788 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Robert Zubeck
2007-07-27 17:46:10 +00:00
parent c2b44deb2d
commit 73b7e56563
@@ -767,7 +767,7 @@ public class PeerManager
protected LockHandler createLockHandler (PeerNode peer, NodeObject.Lock lock, boolean acquire)
{
LockHandler handler = new LockHandler(peer, lock, true);
LockHandler handler = new LockHandler(peer, lock, acquire);
_locks.put(lock, handler);
return handler;
}