]> git.ktnx.net Git - mobile-ledger.git/blobdiff - app/src/main/java/net/ktnx/mobileledger/model/TransactionListItem.java
drop remnants of hollow transaction list item
[mobile-ledger.git] / app / src / main / java / net / ktnx / mobileledger / model / TransactionListItem.java
index 75cae3be1eb4fe7944e584f4ffc7b1a197c45a81..e24647f22361205d6cd63b477873f2ad45deb8ca 100644 (file)
@@ -27,9 +27,6 @@ public class TransactionListItem {
     private boolean monthShown;
     private LedgerTransaction transaction;
     private boolean odd;
-    public TransactionListItem() {
-        this.type = Type.TRAILER;
-    }
     public TransactionListItem(Date date, boolean monthShown) {
         this.type = Type.DELIMITER;
         this.date = date;
@@ -56,5 +53,5 @@ public class TransactionListItem {
     public boolean isOdd() {
         return odd;
     }
-    public enum Type {TRANSACTION, DELIMITER, TRAILER}
+    public enum Type {TRANSACTION, DELIMITER}
 }