251566b321
- Specify override first on overridden methods. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4170 542714f4-19e9-0310-aa3c-eee0fc999fb1
18 lines
453 B
ActionScript
18 lines
453 B
ActionScript
package com.threerings.crowd.chat.client {
|
|
|
|
import com.threerings.crowd.util.CrowdContext;
|
|
|
|
import com.threerings.crowd.chat.data.ChatCodes;
|
|
|
|
public class ClearHandler extends CommandHandler
|
|
{
|
|
override public function handleCommand (
|
|
ctx :CrowdContext, speakSvc :SpeakService,
|
|
cmd :String, args :String, history :Array) :String
|
|
{
|
|
ctx.getChatDirector().clearDisplays();
|
|
return ChatCodes.SUCCESS;
|
|
}
|
|
}
|
|
}
|