diff --git a/src/java/com/threerings/presents/server/InvocationManager.java b/src/java/com/threerings/presents/server/InvocationManager.java index 99bed1013..c0308db16 100644 --- a/src/java/com/threerings/presents/server/InvocationManager.java +++ b/src/java/com/threerings/presents/server/InvocationManager.java @@ -98,6 +98,15 @@ public class InvocationManager return registerDispatcher(dispatcher, null); } + /** + * @Deprecated use {@link #registerDispatcher(InvocationDispatcher)}. + */ + public InvocationMarshaller registerDispatcher ( + InvocationDispatcher dispatcher, boolean bootstrap) + { + return registerDispatcher(dispatcher, null); + } + /** * Registers the supplied invocation dispatcher, returning a marshaller that can be used to * send requests to the provider for whom the dispatcher is proxying.