Fixed issue of only 1 thread executing

This commit is contained in:
misaochan 2016-01-20 17:39:46 +13:00
parent 213ce0aca5
commit 8a733bdbc3

View file

@ -503,8 +503,8 @@ public class CategorizationFragment extends SherlockFragment{
lastUpdater = new CategoriesUpdater();
//TODO: Only the first one is ever called, why?
Utils.executeAsyncTask(lastUpdater, executor);
Utils.executeAsyncTask(methodAUpdater, executor);
Utils.executeAsyncTask(lastUpdater);
Utils.executeAsyncTask(methodAUpdater);
}