]> git.ktnx.net Git - mobile-ledger.git/blobdiff - app/src/main/java/net/ktnx/mobileledger/model/LedgerAccount.java
drop remnants of "starring" accounts
[mobile-ledger.git] / app / src / main / java / net / ktnx / mobileledger / model / LedgerAccount.java
index 2aa558bbb599a0a3af99817d0fdd7bf7d7dad16b..19a33ad6166f2f6f2231d619d9b02ddd28550c36 100644 (file)
@@ -32,7 +32,6 @@ public class LedgerAccount {
     private String shortName;
     private int level;
     private String parentName;
-    private boolean hiddenByStarToBe;
     private boolean expanded;
     private List<LedgerAmount> amounts;
     private boolean hasSubAccounts;
@@ -160,15 +159,6 @@ public class LedgerAccount {
     public String getParentName() {
         return parentName;
     }
-    public boolean isHiddenByStarToBe() {
-        return hiddenByStarToBe;
-    }
-    public void setHiddenByStarToBe(boolean hiddenByStarToBe) {
-        this.hiddenByStarToBe = hiddenByStarToBe;
-    }
-    public void toggleHiddenToBe() {
-        setHiddenByStarToBe(!hiddenByStarToBe);
-    }
     public boolean hasSubAccounts() {
         return hasSubAccounts;
     }