mirror of
https://github.com/igniterealtime/Spark.git
synced 2025-12-01 12:27:58 +00:00
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:
@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user