Properly type this ResultListener.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4758 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2007-07-12 21:42:52 +00:00
parent 447ddb01f8
commit 01692e1fff
@@ -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<Void>
{
/**
* 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();
}