From ccb77db4faf713fd28a6ef2da9dcb4417336691f Mon Sep 17 00:00:00 2001 From: Ray Greenwell Date: Wed, 15 Mar 2006 00:31:22 +0000 Subject: [PATCH] Removed unused cruft. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@3946 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- .../threerings/crowd/chat/client/ChatDirector.java | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/src/java/com/threerings/crowd/chat/client/ChatDirector.java b/src/java/com/threerings/crowd/chat/client/ChatDirector.java index 4f375888d..a8df0649c 100644 --- a/src/java/com/threerings/crowd/chat/client/ChatDirector.java +++ b/src/java/com/threerings/crowd/chat/client/ChatDirector.java @@ -1026,14 +1026,6 @@ public class ChatDirector extends BasicDirector return (type == null) ? PLACE_CHAT_TYPE : type; } - /** - * Used to assign unique ids to all speak requests. - */ - protected synchronized int nextRequestId () - { - return _requestId++; - } - // documentation inherited from interface protected void fetchServices (Client client) { @@ -1245,9 +1237,6 @@ public class ChatDirector extends BasicDirector /** A history of chat commands. */ protected static ArrayList _history = new ArrayList(); - /** Used by {@link #nextRequestId}. */ - protected int _requestId; - /** Operation used to filter chat messages. */ protected FilterMessageOp _filterMessageOp = new FilterMessageOp();