the 'force' argument to ChatDisplay.clear() is now implied.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1927 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2002-11-08 07:28:23 +00:00
parent d50852ebb1
commit 59fbad181c
3 changed files with 9 additions and 22 deletions
@@ -1,5 +1,5 @@
//
// $Id: ChatDirector.java,v 1.38 2002/11/04 20:06:15 ray Exp $
// $Id: ChatDirector.java,v 1.39 2002/11/08 07:28:23 ray Exp $
package com.threerings.crowd.chat;
@@ -191,19 +191,9 @@ public class ChatDirector extends BasicDirector
* Requests that all chat displays clear their contents.
*/
public void clearDisplays ()
{
clearDisplays(false);
}
/**
* Request that all chat displays clear their contents.
*
* @param force if false, a display may choose to ignore the clear.
*/
protected void clearDisplays (boolean force)
{
for (int ii=0, nn=_displays.size(); ii < nn; ii++) {
((ChatDisplay) _displays.get(ii)).clear(force);
((ChatDisplay) _displays.get(ii)).clear();
}
}
@@ -580,7 +570,7 @@ public class ChatDirector extends BasicDirector
{
super.clientObjectDidChange(client);
clearDisplays(true);
clearDisplays();
}
// documentation inherited
@@ -588,7 +578,7 @@ public class ChatDirector extends BasicDirector
{
super.clientDidLogoff(client);
clearDisplays(true);
clearDisplays();
// clear out the list of people we've chatted with
_chatters.clear();
@@ -1,5 +1,5 @@
//
// $Id: ChatDisplay.java,v 1.15 2002/10/27 22:33:42 ray Exp $
// $Id: ChatDisplay.java,v 1.16 2002/11/08 07:28:23 ray Exp $
package com.threerings.crowd.chat;
@@ -12,10 +12,8 @@ public interface ChatDisplay
{
/**
* Called to clear the chat display.
*
* @param force if false, the ChatDisplay can choose to ignore the clear.
*/
public void clear (boolean force);
public void clear ();
/**
* Called to display a chat message.