]> git.ktnx.net Git - mobile-ledger.git/commitdiff
fix field/accessor type mismatch
authorDamyan Ivanov <dam+mobileledger@ktnx.net>
Thu, 22 Apr 2021 20:44:49 +0000 (23:44 +0300)
committerDamyan Ivanov <dam+mobileledger@ktnx.net>
Thu, 22 Apr 2021 20:44:49 +0000 (23:44 +0300)
app/src/main/java/net/ktnx/mobileledger/db/TemplateAccount.java

index e8f2448615b9f06760ca9c92f5b2bc9e1f986c15..949bd9da9127d5f48f3015951dea37b4670d2238 100644 (file)
@@ -93,10 +93,10 @@ public class TemplateAccount extends TemplateBase {
     public void setNegateAmount(Boolean negateAmount) {
         this.negateAmount = negateAmount;
     }
-    public @NotNull Long getTemplateId() {
+    public long getTemplateId() {
         return templateId;
     }
-    public void setTemplateId(@NonNull Long templateId) {
+    public void setTemplateId(long templateId) {
         this.templateId = templateId;
     }
     @NonNull