diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2018-10-09 07:54:34 +0200 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2018-10-09 07:54:34 +0200 |
commit | e836a1457c4f7ce685c8120c131fc61ece8c9886 (patch) | |
tree | c38453dd0b016472f8917e110f1be3dee32dfd86 | |
parent | d07c5db947ebe04666e18294481ff3574314f625 (diff) | |
download | nextcloud-server-e836a1457c4f7ce685c8120c131fc61ece8c9886.tar.gz nextcloud-server-e836a1457c4f7ce685c8120c131fc61ece8c9886.zip |
Remove deprecated and noop APIs from OC.AppConfig
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
-rw-r--r-- | core/js/config.js | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/core/js/config.js b/core/js/config.js index 7dc742f7567..50d6379fdf1 100644 --- a/core/js/config.js +++ b/core/js/config.js @@ -58,23 +58,9 @@ OC.AppConfig={ }, /** - * @deprecated - */ - hasKey:function(app,key,callback){ - console.error('OC.AppConfig.hasKey is not supported anymore. Use OCP.AppConfig.getValue instead.'); - }, - - /** * @deprecated Use OCP.AppConfig.deleteKey() instead */ deleteKey:function(app,key){ OCP.AppConfig.deleteKey(app, key); - }, - - /** - * @deprecated - */ - deleteApp:function(app){ - console.error('OC.AppConfig.deleteApp is not supported anymore.'); } }; |