SPARK-307 Chat History not showing this week.

git-svn-id: http://svn.igniterealtime.org/svn/repos/spark/trunk@4548 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
Derek DeMoro
2006-07-18 17:13:23 +00:00
committed by derek
parent 0274a7934e
commit 719514a63d
7 changed files with 173 additions and 249 deletions

View File

@ -71,7 +71,7 @@ public class ChatContainer extends SparkTabbedPane implements MessageListener, C
* List of all ChatRoom Listeners.
*/
private final List chatRoomListeners = new ArrayList();
private final List chatRoomList = new ArrayList();
private final List<ChatRoom> chatRoomList = new ArrayList<ChatRoom>();
private final Map presenceMap = new HashMap();
private static final String WELCOME_TITLE = SparkRes.getString(SparkRes.WELCOME);
@ -994,7 +994,7 @@ public class ChatContainer extends SparkTabbedPane implements MessageListener, C
}
public Collection getChatRooms() {
public Collection<ChatRoom> getChatRooms() {
return chatRoomList;
}