From 0b068d51898b40107a891b521526489f4a2be5ff Mon Sep 17 00:00:00 2001 From: Dave Hoover Date: Mon, 3 Mar 2008 22:11:45 +0000 Subject: [PATCH] You know, generifying that correctly is actually a big scary tunnel of dealing with our generated services & whatnot, so that's a much deeper rabbit hole than I was thinking when I just did that one big, so I'm going to leave that well enough alone for now instead of half-assing it. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4949 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- .../com/threerings/presents/client/InvocationService.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/java/com/threerings/presents/client/InvocationService.java b/src/java/com/threerings/presents/client/InvocationService.java index 3f454c7bd..4b59287fa 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 (T result); + public void requestProcessed (Object result); } }