diff --git a/src/java/com/threerings/presents/client/InvocationService.java b/src/java/com/threerings/presents/client/InvocationService.java index 4b59287fa..3f454c7bd 100644 --- a/src/java/com/threerings/presents/client/InvocationService.java +++ b/src/java/com/threerings/presents/client/InvocationService.java @@ -118,11 +118,11 @@ public interface InvocationService * Extends the {@link InvocationListener} with a basic success * callback that delivers a result object. */ - public static interface ResultListener extends InvocationListener + public static interface ResultListener extends InvocationListener { /** * Indicates that the request was successfully processed. */ - public void requestProcessed (Object result); + public void requestProcessed (T result); } }