diff --git a/src/main/java/com/threerings/presents/server/InvocationManager.java b/src/main/java/com/threerings/presents/server/InvocationManager.java index 2122549f8..33fc7daad 100644 --- a/src/main/java/com/threerings/presents/server/InvocationManager.java +++ b/src/main/java/com/threerings/presents/server/InvocationManager.java @@ -142,7 +142,7 @@ public class InvocationManager // determine the invocation service code mappings final Map invmeths = Maps.newHashMap(); - for (Method method : pclass.getDeclaredMethods()) { + for (Method method : pclass.getMethods()) { Class[] ptypes = method.getParameterTypes(); // only consider methods whose first argument is of type ClientObject; this is a // non-issue if we are looking at an auto-generated FooProvider interface, but is