From 56216c27e893e623efc7e7ceee67f8659a136fbf Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Wed, 31 May 2006 04:44:21 +0000 Subject: [PATCH] Would you believe, more type-safety? git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4167 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- src/java/com/threerings/presents/util/ResultAdapter.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); }