1
0
mirror of https://github.com/moparisthebest/Yaaic synced 2024-08-13 16:53:50 -04:00

Removed synchronized list from Deckadapter

This commit is contained in:
Sebastian Kaspari 2010-03-21 15:29:26 +01:00
parent 8bfe1d1a75
commit df86967d69

View File

@ -20,9 +20,7 @@ along with Yaaic. If not, see <http://www.gnu.org/licenses/>.
*/
package org.yaaic.adapter;
import java.util.Collections;
import java.util.LinkedList;
import java.util.List;
import org.yaaic.R;
import org.yaaic.model.Conversation;
@ -43,7 +41,7 @@ public class DeckAdapter extends BaseAdapter
{
public static final String TAG = "Yaaic/DeckAdapter";
private List<Conversation> conversations;
private LinkedList<Conversation> conversations;
private MessageListView currentView;
private String currentChannel;
@ -52,7 +50,7 @@ public class DeckAdapter extends BaseAdapter
*/
public DeckAdapter()
{
conversations = Collections.synchronizedList(new LinkedList<Conversation>());
conversations = new LinkedList<Conversation>();
}
/**