From 1d2e8072a09d6e3017b188be1faa3e8288018f6e Mon Sep 17 00:00:00 2001 From: Niels Andriesse Date: Mon, 22 Jul 2019 11:27:24 +1000 Subject: [PATCH] Fix build --- src/org/thoughtcrime/securesms/ApplicationContext.java | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/org/thoughtcrime/securesms/ApplicationContext.java b/src/org/thoughtcrime/securesms/ApplicationContext.java index 73ca6a62d5..c7d59dcb33 100644 --- a/src/org/thoughtcrime/securesms/ApplicationContext.java +++ b/src/org/thoughtcrime/securesms/ApplicationContext.java @@ -154,8 +154,6 @@ public class ApplicationContext extends MultiDexApplication implements Dependenc KeyCachingService.onAppForegrounded(this); // Loki - Start long polling if needed startLongPollingIfNeeded(); - // Loki - Stop background poll worker if needed - stopBackgroundPollingIfNeeded(); } @Override @@ -165,8 +163,6 @@ public class ApplicationContext extends MultiDexApplication implements Dependenc KeyCachingService.onAppBackgrounded(this); // Loki - Stop long polling if needed if (lokiLongPoller != null) { lokiLongPoller.stopIfNeeded(); } - // Loki - Start background poll worker if needed - startBackgroundPollingIfNeeded(); } @Override