Log a stack trace (and refuse to do it) if someone tries to

register the same chat display twice.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1941 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2002-11-13 01:29:41 +00:00
parent 11da0c8983
commit b89f5dc419
@@ -1,5 +1,5 @@
//
// $Id: ChatDirector.java,v 1.39 2002/11/08 07:28:23 ray Exp $
// $Id: ChatDirector.java,v 1.40 2002/11/13 01:29:41 ray Exp $
package com.threerings.crowd.chat;
@@ -96,6 +96,11 @@ public class ChatDirector extends BasicDirector
*/
public void addChatDisplay (ChatDisplay display)
{
if (_displays.contains(display)) {
Log.warning("Tried to add ChatDisplay more than once!");
Log.logStackTrace(new Exception());
return;
}
_displays.add(display);
}