]> git.ktnx.net Git - mobile-ledger.git/blobdiff - app/src/main/java/net/ktnx/mobileledger/model/TransactionListItem.java
cleanup of the tracking of the previous transaction
[mobile-ledger.git] / app / src / main / java / net / ktnx / mobileledger / model / TransactionListItem.java
index ee1810a90fc6603320fdc07cab91c565f06953c1..7694578e8578effd36b9ac9c713b1f771c484c7c 100644 (file)
@@ -17,6 +17,8 @@
 
 package net.ktnx.mobileledger.model;
 
+import android.support.annotation.NonNull;
+
 import java.util.Date;
 
 public class TransactionListItem {
@@ -33,6 +35,7 @@ public class TransactionListItem {
         this.type = Type.TRANSACTION;
         this.transaction = transaction;
     }
+    @NonNull
     public Type getType() {
         return type;
     }