]> git.ktnx.net Git - mobile-ledger.git/commitdiff
whitespace
authorDamyan Ivanov <dam+mobileledger@ktnx.net>
Thu, 16 Jul 2020 15:42:15 +0000 (18:42 +0300)
committerDamyan Ivanov <dam+mobileledger@ktnx.net>
Thu, 16 Jul 2020 15:42:15 +0000 (18:42 +0300)
app/src/main/java/net/ktnx/mobileledger/ui/account_summary/AccountSummaryAdapter.java

index 3a528f5783e0634365ce6250f03e79dfeae41d89..c0ed9bd7a4f3421c28b7df2bfb86323d03e9f26a 100644 (file)
@@ -69,7 +69,8 @@ public class AccountSummaryAdapter
     }
 
     public void onBindViewHolder(@NonNull LedgerRowHolder holder, int position) {
-        holder.bindToAccount(listDiffer.getCurrentList().get(position));
+        holder.bindToAccount(listDiffer.getCurrentList()
+                                       .get(position));
     }
 
     @NonNull
@@ -82,7 +83,8 @@ public class AccountSummaryAdapter
 
     @Override
     public int getItemCount() {
-        return listDiffer.getCurrentList().size();
+        return listDiffer.getCurrentList()
+                         .size();
     }
     public void setAccounts(MobileLedgerProfile profile, ArrayList<LedgerAccount> newList) {
         this.profile = profile;