]> git.ktnx.net Git - mobile-ledger-staging.git/blobdiff - app/src/main/java/net/ktnx/mobileledger/async/CommitAccountsTaskParams.java
disable some annoying debug
[mobile-ledger-staging.git] / app / src / main / java / net / ktnx / mobileledger / async / CommitAccountsTaskParams.java
index fe374c70c56932a2dcd589321c1bc7dbcab34170..90728282bdb4642498b216b711bee30156dc14f2 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright © 2019 Damyan Ivanov.
+ * Copyright © 2020 Damyan Ivanov.
  * 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
 package net.ktnx.mobileledger.async;
 
 import net.ktnx.mobileledger.model.LedgerAccount;
-
-import java.util.List;
+import net.ktnx.mobileledger.utils.ObservableList;
 
 public class CommitAccountsTaskParams {
-    List<LedgerAccount> accountList;
-    boolean showOnlyStarred;
-    public CommitAccountsTaskParams(List<LedgerAccount> accountList, boolean showOnlyStarred) {
+    ObservableList<LedgerAccount> accountList;
+    public CommitAccountsTaskParams(ObservableList<LedgerAccount> accountList, boolean showOnlyStarred) {
         this.accountList = accountList;
-        this.showOnlyStarred = showOnlyStarred;
     }
 }