diff options
author | Herbert Reiter <46045854+damoasda@users.noreply.github.com> | 2020-11-14 11:32:49 +0100 |
---|---|---|
committer | Herbert Reiter <46045854+damoasda@users.noreply.github.com> | 2020-11-14 11:32:49 +0100 |
commit | 3aa6b378346bd88ed53eb4eb6a6b1b537f917c55 (patch) | |
tree | 350292cd7fcfe5417100b99db1fdfd81ee8a10f6 /core/src/play/java | |
parent | 5982ee07b43e1f042931d14c5044e95adb433726 (diff) | |
download | AntennaPod-3aa6b378346bd88ed53eb4eb6a6b1b537f917c55.zip |
Refactoring: Remove interface DBTasksCallbacks and class DBTasksCallbacksImpl
Diffstat (limited to 'core/src/play/java')
-rw-r--r-- | core/src/play/java/de/danoeh/antennapod/core/ClientConfig.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/src/play/java/de/danoeh/antennapod/core/ClientConfig.java b/core/src/play/java/de/danoeh/antennapod/core/ClientConfig.java index 41e95d99e..4b5e4d588 100644 --- a/core/src/play/java/de/danoeh/antennapod/core/ClientConfig.java +++ b/core/src/play/java/de/danoeh/antennapod/core/ClientConfig.java @@ -12,6 +12,7 @@ import de.danoeh.antennapod.core.preferences.SleepTimerPreferences; import de.danoeh.antennapod.core.preferences.UsageStatistics; import de.danoeh.antennapod.core.preferences.UserPreferences; import de.danoeh.antennapod.core.service.download.AntennapodHttpClient; +import de.danoeh.antennapod.core.storage.AutomaticDownloadAlgorithm; import de.danoeh.antennapod.core.storage.PodDBAdapter; import de.danoeh.antennapod.core.util.NetworkUtils; import de.danoeh.antennapod.core.util.gui.NotificationUtils; @@ -38,7 +39,7 @@ public class ClientConfig { public static PlaybackServiceCallbacks playbackServiceCallbacks; - public static DBTasksCallbacks dbTasksCallbacks; + public static AutomaticDownloadAlgorithm automaticDownloadAlgorithm; public static CastCallbacks castCallbacks; |