diff --git a/src/java/com/threerings/presents/util/ResultAdapter.java b/src/java/com/threerings/presents/util/ResultAdapter.java index d662f31c6..90b555c50 100644 --- a/src/java/com/threerings/presents/util/ResultAdapter.java +++ b/src/java/com/threerings/presents/util/ResultAdapter.java @@ -35,7 +35,7 @@ import com.threerings.presents.server.InvocationException; * to the result listener, otherwise they will be provided with {@link * InvocationCodes#INTERNAL_ERROR}. */ -public class ResultAdapter implements ResultListener +public class ResultAdapter implements ResultListener { /** * Creates an adapter with the supplied listener. @@ -46,7 +46,7 @@ public class ResultAdapter implements ResultListener } // documentation inherited from interface - public void requestCompleted (Object result) + public void requestCompleted (T result) { _listener.requestProcessed(result); }