mirror of
https://github.com/moparisthebest/Yaaic
synced 2024-11-23 01:12:17 -05:00
Removed synchronized list from Deckadapter
This commit is contained in:
parent
8bfe1d1a75
commit
df86967d69
@ -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>();
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user