]> git.ktnx.net Git - mobile-ledger.git/commitdiff
typo in method name
authorDamyan Ivanov <dam+mobileledger@ktnx.net>
Mon, 4 Apr 2022 16:00:27 +0000 (19:00 +0300)
committerDamyan Ivanov <dam+mobileledger@ktnx.net>
Mon, 4 Apr 2022 16:00:27 +0000 (19:00 +0300)
app/src/main/java/net/ktnx/mobileledger/dao/TemplateHeaderDAO.java
app/src/main/java/net/ktnx/mobileledger/ui/templates/TemplatesActivity.java

index 24e751c8149400fd26d3f933a36db90f93f3f73f..67dcef8d69b8d131edc8dd6370a49f5ae4181e85 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright © 2021 Damyan Ivanov.
+ * Copyright © 2022 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
@@ -137,7 +137,7 @@ public abstract class TemplateHeaderDAO {
                 Misc.onMainThread(callback);
         });
     }
-    public void duplicateTemplateWitAccounts(@NonNull Long id, @Nullable
+    public void duplicateTemplateWithAccounts(@NonNull Long id, @Nullable
             AsyncResultCallback<TemplateWithAccounts> callback) {
         BaseDAO.runAsync(() -> {
             TemplateWithAccounts src = getTemplateWithAccountsSync(id);
index ed652879e633bc53d536586479a99b9d0c656370..3f9535ceb6b97403fde821f38e5aeb6977741881 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright © 2021 Damyan Ivanov.
+ * Copyright © 2022 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
@@ -119,7 +119,7 @@ public class TemplatesActivity extends CrashReportingActivity
     public void onDuplicateTemplate(long id) {
         DB.get()
           .getTemplateDAO()
-          .duplicateTemplateWitAccounts(id, null);
+          .duplicateTemplateWithAccounts(id, null);
     }
     @Override
     public void onEditTemplate(Long id) {