From 44f19a5d68a521fd2d1fc96c3ca3af2eccd6d56e Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Fri, 3 Aug 2001 02:12:12 +0000 Subject: [PATCH] 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 --- .../com/threerings/presents/client/InvocationDirector.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/java/com/threerings/presents/client/InvocationDirector.java b/src/java/com/threerings/presents/client/InvocationDirector.java index 9277cf559..b81f2a324 100644 --- a/src/java/com/threerings/presents/client/InvocationDirector.java +++ b/src/java/com/threerings/presents/client/InvocationDirector.java @@ -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++; }