X-Git-Url: https://git.ktnx.net/?a=blobdiff_plain;f=app%2Fsrc%2Fmain%2Fjava%2Fnet%2Fktnx%2Fmobileledger%2Fui%2Faccount_summary%2FAccountSummaryViewModel.java;h=7a7164f3102e55535023cb1a2dd137101cca5a4b;hb=c6fe580ac5a93cff593d95a0fe34bd6c2c7bddfc;hp=c3223cc929256c3e69d2eae41840a79aefabb4d5;hpb=a2b00ecbcbe8b13df466c94aa11ba593f69869d8;p=mobile-ledger.git diff --git a/app/src/main/java/net/ktnx/mobileledger/ui/account_summary/AccountSummaryViewModel.java b/app/src/main/java/net/ktnx/mobileledger/ui/account_summary/AccountSummaryViewModel.java index c3223cc9..7a7164f3 100644 --- a/app/src/main/java/net/ktnx/mobileledger/ui/account_summary/AccountSummaryViewModel.java +++ b/app/src/main/java/net/ktnx/mobileledger/ui/account_summary/AccountSummaryViewModel.java @@ -1,24 +1,24 @@ /* * Copyright © 2019 Damyan Ivanov. - * This file is part of Mobile-Ledger. - * Mobile-Ledger is free software: you can distribute it and/or modify it + * This file is part of MoLe. + * MoLe is free software: you can distribute it and/or modify it * under the term of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your opinion), any later version. * - * Mobile-Ledger is distributed in the hope that it will be useful, + * MoLe is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License terms for details. * * You should have received a copy of the GNU General Public License - * along with Mobile-Ledger. If not, see . + * along with MoLe. If not, see . */ package net.ktnx.mobileledger.ui.account_summary; -import android.arch.lifecycle.ViewModel; import android.content.Context; +import android.os.AsyncTask; import android.util.Log; import net.ktnx.mobileledger.async.CommitAccountsTask; @@ -29,15 +29,19 @@ import net.ktnx.mobileledger.model.LedgerAccount; import java.util.ArrayList; -class AccountSummaryViewModel extends ViewModel { +import androidx.lifecycle.ViewModel; + +public class AccountSummaryViewModel extends ViewModel { static void commitSelections(Context context) { CAT task = new CAT(); - task.execute( + task.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR, new CommitAccountsTaskParams(Data.accounts.get(), Data.optShowOnlyStarred.get())); } - void scheduleAccountListReload() { + static public void scheduleAccountListReload() { + if (Data.profile.get() == null) return; + UAT task = new UAT(); - task.execute(); + task.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR); }