]> git.ktnx.net Git - mobile-ledger-staging.git/blobdiff - app/src/main/java/net/ktnx/mobileledger/json/v1_14/ParsedLedgerAccount.java
whitespace
[mobile-ledger-staging.git] / app / src / main / java / net / ktnx / mobileledger / json / v1_14 / ParsedLedgerAccount.java
index 308140092b6eba78e80b00b072cbb434348c5767..ab982b4e52883872f4cb6f130900a0c814ad141c 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
@@ -38,12 +38,12 @@ public class ParsedLedgerAccount {
     public List<ParsedBalance> getAebalance() {
         return aebalance;
     }
-    public List<ParsedBalance> getAibalance() {
-        return aibalance;
-    }
     public void setAebalance(List<ParsedBalance> aebalance) {
         this.aebalance = aebalance;
     }
+    public List<ParsedBalance> getAibalance() {
+        return aibalance;
+    }
     public void setAibalance(List<ParsedBalance> aibalance) {
         this.aibalance = aibalance;
     }