Remove non-existing class from ClientConfig

When #3284 (Make ExoPlayer the default player) was merged [1],
`UpdateManager` was removed but a reference to it was left behind in
`ClientConfig`, which causes the project not to build.

Since its contents were integrated into `app/PreferenceUpgrader`, we no
longer need this entry here.

[1]: https://github.com/AntennaPod/AntennaPod/pull/3284
This commit is contained in:
Anderson Mesquita 2019-07-24 07:58:31 -04:00
parent 60866a1c79
commit 883bd27bac
1 changed files with 0 additions and 1 deletions

View File

@ -39,7 +39,6 @@ public class ClientConfig {
} }
PodDBAdapter.init(context); PodDBAdapter.init(context);
UserPreferences.init(context); UserPreferences.init(context);
UpdateManager.init(context);
PlaybackPreferences.init(context); PlaybackPreferences.init(context);
NetworkUtils.init(context); NetworkUtils.init(context);
SleepTimerPreferences.init(context); SleepTimerPreferences.init(context);