From 01692e1fff64ff3d5a88f32b37bd72f2bc4a58b3 Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Thu, 12 Jul 2007 21:42:52 +0000 Subject: [PATCH] Properly type this ResultListener. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4758 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- src/java/com/threerings/presents/util/ConfirmAdapter.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/java/com/threerings/presents/util/ConfirmAdapter.java b/src/java/com/threerings/presents/util/ConfirmAdapter.java index 6a271932e..f4e4737ee 100644 --- a/src/java/com/threerings/presents/util/ConfirmAdapter.java +++ b/src/java/com/threerings/presents/util/ConfirmAdapter.java @@ -33,7 +33,7 @@ import com.threerings.presents.server.InvocationException; * an instance fo {@link InvocationException} the message will be passed on to the confirm * listener, otherwise they will be provided with {@link InvocationCodes#INTERNAL_ERROR}. */ -public class ConfirmAdapter implements ResultListener +public class ConfirmAdapter implements ResultListener { /** * Creates an adapter with the supplied listener. @@ -44,7 +44,7 @@ public class ConfirmAdapter implements ResultListener } // documentation inherited from interface - public void requestCompleted (Object result) + public void requestCompleted (Void result) { _listener.requestProcessed(); }