From c4e0d1d2789df371865342d2746a206b3f9c93ec Mon Sep 17 00:00:00 2001 From: Mike Thomas Date: Thu, 23 Oct 2008 23:18:44 +0000 Subject: [PATCH] Be a bit more flexible with the generics here. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5456 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- src/java/com/threerings/crowd/chat/client/ChatDirector.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/java/com/threerings/crowd/chat/client/ChatDirector.java b/src/java/com/threerings/crowd/chat/client/ChatDirector.java index f5de050f1..2d319b743 100644 --- a/src/java/com/threerings/crowd/chat/client/ChatDirector.java +++ b/src/java/com/threerings/crowd/chat/client/ChatDirector.java @@ -497,7 +497,8 @@ public class ChatDirector extends BasicDirector * @param msg the contents of the tell message. * @param rl an optional result listener if you'd like to be notified of success or failure. */ - public void requestTell (final Name target, String msg, final ResultListener rl) + public void requestTell ( + final T target, String msg, final ResultListener rl) { // make sure they can say what they want to say final String message = filter(msg, target, true);