queue isn't meant to be static

This commit is contained in:
Eric House 2012-01-30 19:32:56 -08:00
parent 144db5628f
commit cd8ace6c9f

View file

@ -116,7 +116,7 @@ public class BTService extends Service {
}
private BluetoothAdapter m_adapter;
private static LinkedBlockingQueue<BTQueueElem> m_queue;
private LinkedBlockingQueue<BTQueueElem> m_queue;
private HashMap<String,String> m_names;
private BTMsgSink m_btMsgSink;