There's no reason to demand an IntSet here.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@6086 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Par Winzell
2010-06-22 15:19:59 +00:00
parent 12578d8810
commit 6971ce7d4d
@@ -24,14 +24,13 @@ package com.threerings.crowd.chat.server;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.Set;
import com.google.common.collect.Lists;
import com.google.common.collect.Maps;
import com.google.inject.Inject;
import com.samskivert.util.ArrayIntSet;
import com.samskivert.util.IntSet;
import com.threerings.util.Name;
import com.threerings.presents.annotation.AnyThread;
@@ -165,7 +164,7 @@ public abstract class ChatChannelManager
/**
* This should be called when a channel's participant set has been resolved.
*/
protected void resolutionComplete (ChatChannel channel, IntSet parts)
protected void resolutionComplete (ChatChannel channel, Set<Integer> parts)
{
// map the participants of our now resolved channel
ChannelInfo info = new ChannelInfo();
@@ -391,7 +390,7 @@ public abstract class ChatChannelManager
public ChatChannel channel;
/** The body ids of the participants of this channel. */
public IntSet participants;
public Set<Integer> participants;
/** The time at which a message was last dispatched on this channel. */
public long lastMessage;