]> git.ktnx.net Git - mobile-ledger-staging.git/blobdiff - app/src/main/java/net/ktnx/mobileledger/async/UpdateTransactionsTask.java
whitespace
[mobile-ledger-staging.git] / app / src / main / java / net / ktnx / mobileledger / async / UpdateTransactionsTask.java
index 815f37fe5f1ab46046ab93c07e13e51164dc648d..1152cdeaeef3a036c7e0b2b59a20da06e4c7588e 100644 (file)
@@ -30,6 +30,7 @@ import net.ktnx.mobileledger.utils.Globals;
 
 import java.text.ParseException;
 import java.util.ArrayList;
+import java.util.Calendar;
 import java.util.Date;
 
 import static net.ktnx.mobileledger.utils.Logger.debug;
@@ -37,7 +38,8 @@ import static net.ktnx.mobileledger.utils.Logger.debug;
 public class UpdateTransactionsTask extends AsyncTask<String, Void, String> {
     protected String doInBackground(String[] filterAccName) {
         final MobileLedgerProfile profile = Data.profile.getValue();
-        if (profile == null) return "Profile not configured";
+        if (profile == null)
+            return "Profile not configured";
 
         String profile_uuid = profile.getUuid();
         Data.backgroundTaskStarted();