]> 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 a355bbdfda431d3487629e0b2119ac6a694bb141..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 com.fasterxml.jackson.annotation.JsonIgnoreProperties;
-
 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;
     }
@@ -41,10 +38,5 @@ public class ParsedBalance {
     public void setAcommodity(String acommodity) {
         this.acommodity = acommodity;
     }
-    public ParsedStyle getAstyle() {
-        return astyle;
-    }
-    public void setAstyle(ParsedStyle astyle) {
-        this.astyle = astyle;
-    }
+
 }