]> git.ktnx.net Git - mobile-ledger.git/blobdiff - app/src/main/java/net/ktnx/mobileledger/async/CommitAccountsTaskParams.java
drop accounts.hidden and "hidden by star" handling
[mobile-ledger.git] / app / src / main / java / net / ktnx / mobileledger / async / CommitAccountsTaskParams.java
index ae3a0b9a66b39a15457982ff18a80074a4f4ebdc..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
@@ -22,9 +22,7 @@ import net.ktnx.mobileledger.utils.ObservableList;
 
 public class CommitAccountsTaskParams {
     ObservableList<LedgerAccount> accountList;
-    boolean showOnlyStarred;
     public CommitAccountsTaskParams(ObservableList<LedgerAccount> accountList, boolean showOnlyStarred) {
         this.accountList = accountList;
-        this.showOnlyStarred = showOnlyStarred;
     }
 }