Remove unused commented code.

This commit is contained in:
Przemek Grondek 2014-08-20 11:39:39 +02:00
parent 298fab290a
commit 2b661013bd

View file

@ -101,14 +101,7 @@ public class AsyncDatabaseConnector {
list = parseListFromJSON(data);
} catch (JSONException e) { e.printStackTrace(); }
if(listReturnListener!=null) {
final List<String> finalList = list;
// new Thread(new Runnable() {
// @Override
// public void run() {
listReturnListener.onListReturn(finalList);
//
// }
// }).run();
listReturnListener.onListReturn(list);
}
}
}, onPostExecuteListener);