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();