]> git.ktnx.net Git - mobile-ledger-staging.git/commitdiff
whitespace
authorDamyan Ivanov <dam+mobileledger@ktnx.net>
Fri, 2 Oct 2020 06:00:25 +0000 (09:00 +0300)
committerDamyan Ivanov <dam+mobileledger@ktnx.net>
Fri, 2 Oct 2020 06:00:25 +0000 (09:00 +0300)
app/src/main/java/net/ktnx/mobileledger/async/SendTransactionTask.java

index 8720dc0d5fb747b75494dde69941b849a104c7f9..1c4be5c47fea6789c6a22c3baa1b93928294775b 100644 (file)
@@ -59,12 +59,12 @@ import static net.ktnx.mobileledger.utils.Logger.debug;
 
 public class SendTransactionTask extends AsyncTask<LedgerTransaction, Void, Void> {
     private final TaskCallback taskCallback;
+    private final MobileLedgerProfile mProfile;
+    private final boolean simulate;
     protected String error;
     private String token;
     private String session;
     private LedgerTransaction transaction;
-    private final MobileLedgerProfile mProfile;
-    private final boolean simulate;
 
     public SendTransactionTask(TaskCallback callback, MobileLedgerProfile profile,
                                boolean simulate) {