]> git.ktnx.net Git - mobile-ledger.git/commitdiff
whitespace
authorDamyan Ivanov <dam+mobileledger@ktnx.net>
Sat, 25 Apr 2020 19:29:08 +0000 (22:29 +0300)
committerDamyan Ivanov <dam+mobileledger@ktnx.net>
Sat, 25 Apr 2020 19:29:08 +0000 (22:29 +0300)
app/src/main/java/net/ktnx/mobileledger/ui/activity/NewTransactionItemsAdapter.java

index 9b4022daf619340460b50cc1ba82e3d285dd1dc7..7d01880057901954a2f9ad4c439050531aeabc78 100644 (file)
@@ -386,18 +386,12 @@ class NewTransactionItemsAdapter extends RecyclerView.Adapter<NewTransactionItem
         final String descriptionText = model.getDescription();
         boolean submittable = true;
         final ItemsForCurrency itemsForCurrency = new ItemsForCurrency();
-        final ItemsForCurrency itemsWithEmptyAmountForCurrency =
-                new ItemsForCurrency();
-        final ItemsForCurrency itemsWithAccountAndEmptyAmountForCurrency =
-                new ItemsForCurrency();
-        final ItemsForCurrency itemsWithEmptyAccountForCurrency =
-                new ItemsForCurrency();
-        final ItemsForCurrency itemsWithAmountForCurrency =
-                new ItemsForCurrency();
-        final ItemsForCurrency itemsWithAccountForCurrency =
-                new ItemsForCurrency();
-        final ItemsForCurrency emptyRowsForCurrency =
-                new ItemsForCurrency();
+        final ItemsForCurrency itemsWithEmptyAmountForCurrency = new ItemsForCurrency();
+        final ItemsForCurrency itemsWithAccountAndEmptyAmountForCurrency = new ItemsForCurrency();
+        final ItemsForCurrency itemsWithEmptyAccountForCurrency = new ItemsForCurrency();
+        final ItemsForCurrency itemsWithAmountForCurrency = new ItemsForCurrency();
+        final ItemsForCurrency itemsWithAccountForCurrency = new ItemsForCurrency();
+        final ItemsForCurrency emptyRowsForCurrency = new ItemsForCurrency();
         final List<NewTransactionModel.Item> emptyRows = new ArrayList<>();
 
         try {