diff options
-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.'); } }; |