From 7585967cbd80d7869f57a9adc69c02e8d14cbc33 Mon Sep 17 00:00:00 2001 From: Thomas Steur Date: Wed, 3 Jun 2020 18:47:44 +1200 Subject: Remove code tagged with `@deprecated` (#16001) * remove some code tagged with deprecated * some more tweaks * remove more deprecated methods * more deprecations * remove old files * remove more deprecated methods * fix some tests * update logviewer submodule * fix some tests * fix ui test * another deprecation * Update CHANGELOG.md Co-authored-by: Stefan Giehl * add test for dimensions provider Co-authored-by: Stefan Giehl --- core/Config.php | 23 ----------------------- 1 file changed, 23 deletions(-) (limited to 'core/Config.php') diff --git a/core/Config.php b/core/Config.php index 6e4f444817..d56bdeac5d 100644 --- a/core/Config.php +++ b/core/Config.php @@ -290,26 +290,6 @@ class Config return is_writable($this->settings->getPathLocal()); } - /** - * Clear in-memory configuration so it can be reloaded - * @deprecated since v2.12.0 - */ - public function clear() - { - $this->reload(); - } - - /** - * Read configuration from files into memory - * - * @throws Exception if local config file is not readable; exits for other errors - * @deprecated since v2.12.0 - */ - public function init() - { - $this->reload(); - } - /** * Reloads config data from disk. * @@ -321,9 +301,6 @@ class Config $this->settings->reload($pathGlobal, $pathLocal, $pathCommon); } - /** - * @deprecated - */ public function existsLocalConfig() { return is_readable($this->getLocalPath()); -- cgit v1.2.3