summaryrefslogtreecommitdiffstats
path: root/lib/private/config.php
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2014-11-28 18:38:49 +0100
committerMorris Jobke <hey@morrisjobke.de>2014-12-08 22:42:44 +0100
commit9a7362dd0d4e0f738089302329ce10817377433e (patch)
treeb3bb194150df37f3721896a69a35c9927f8db4e3 /lib/private/config.php
parent0d4f0ab87182cf2cb588bd3285fe41b46f26ee4d (diff)
downloadnextcloud-server-9a7362dd0d4e0f738089302329ce10817377433e.tar.gz
nextcloud-server-9a7362dd0d4e0f738089302329ce10817377433e.zip
drop unused isDebugMode and setDebugMode of OC_Config
Diffstat (limited to 'lib/private/config.php')
-rw-r--r--lib/private/config.php18
1 files changed, 0 insertions, 18 deletions
diff --git a/lib/private/config.php b/lib/private/config.php
index cc07d6a1ed1..8544de34b72 100644
--- a/lib/private/config.php
+++ b/lib/private/config.php
@@ -40,24 +40,6 @@ class Config {
}
/**
- * Enables or disables the debug mode
- * @param bool $state True to enable, false to disable
- */
- public function setDebugMode($state) {
- $this->debugMode = $state;
- $this->writeData();
- $this->cache;
- }
-
- /**
- * Returns whether the debug mode is enabled or disabled
- * @return bool True when enabled, false otherwise
- */
- public function isDebugMode() {
- return $this->debugMode;
- }
-
- /**
* Lists all available config keys
* @return array an array of key names
*