]> git.ktnx.net Git - mobile-ledger.git/blobdiff - app/src/main/java/net/ktnx/mobileledger/json/ParsedBalance.java
add support for hledger-web 1.23 json schema
[mobile-ledger.git] / app / src / main / java / net / ktnx / mobileledger / json / ParsedBalance.java
index 63a0e05c386bfd9ab1e3b47d8ba33e8f9e7df67a..49ee26d860fee29563fe278f1fbea7e4a17cb20d 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.json;
 
+import androidx.annotation.NonNull;
+
 import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
 
 @JsonIgnoreProperties(ignoreUnknown = true)
 public class ParsedBalance {
     private ParsedQuantity aquantity;
     private String acommodity;
-    private ParsedStyle astyle;
-    public ParsedBalance() {
-    }
     public ParsedQuantity getAquantity() {
         return aquantity;
     }
     public void setAquantity(ParsedQuantity aquantity) {
         this.aquantity = aquantity;
     }
+    @NonNull
     public String getAcommodity() {
-        return acommodity;
+        return (acommodity == null) ? "" : acommodity;
     }
     public void setAcommodity(String acommodity) {
         this.acommodity = acommodity;
     }
-    public ParsedStyle getAstyle() {
-        return astyle;
-    }
-    public void setAstyle(ParsedStyle astyle) {
-        this.astyle = astyle;
-    }
+
 }