Make nextInvocationId() public so that others have access to monotonically

increasing request ids if they need 'em.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@157 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2001-08-03 02:12:12 +00:00
parent bd4ed274bc
commit 44f19a5d68
@@ -1,5 +1,5 @@
//
// $Id: InvocationDirector.java,v 1.4 2001/07/19 19:18:06 mdb Exp $
// $Id: InvocationDirector.java,v 1.5 2001/08/03 02:12:12 mdb Exp $
package com.threerings.cocktail.cher.client;
@@ -223,7 +223,7 @@ public class InvocationManager
}
}
protected synchronized int nextInvocationId ()
public synchronized int nextInvocationId ()
{
return _invocationId++;
}