]> git.ktnx.net Git - mobile-ledger.git/blobdiff - app/src/main/java/net/ktnx/mobileledger/json/ParsedStyle.java
more pronounced day/month delimiters in the transaction list
[mobile-ledger.git] / app / src / main / java / net / ktnx / mobileledger / json / ParsedStyle.java
index d0aaa45aff315e899b9c2e3ef8f154ff55263252..c22cd3f133f842f74a4af7e99306f83ebb0031b7 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
@@ -21,19 +21,12 @@ import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
 
 @JsonIgnoreProperties(ignoreUnknown = true)
 public class ParsedStyle {
-    private int asprecision;
     private char asdecimalpoint;
     private char ascommodityside;
     private int digitgroups;
     private boolean ascommodityspaced;
     public ParsedStyle() {
     }
-    public int getAsprecision() {
-        return asprecision;
-    }
-    public void setAsprecision(int asprecision) {
-        this.asprecision = asprecision;
-    }
     public char getAsdecimalpoint() {
         return asdecimalpoint;
     }