Merge pull request #4796 from owncloud/config-no-catch

Remove the exception catch in OC_Config, this should be handled by a higher layer
remotes/origin/stable6
Bart Visscher 12 years ago
commit 6a93994a01
  1. 12
      lib/private/legacy/config.php

@ -83,11 +83,7 @@ class OC_Config {
*
*/
public static function setValue($key, $value) {
try {
self::$object->setValue($key, $value);
} catch (\OC\HintException $e) {
\OC_Template::printErrorPage($e->getMessage(), $e->getHint());
}
self::$object->setValue($key, $value);
}
/**
@ -98,10 +94,6 @@ class OC_Config {
*
*/
public static function deleteKey($key) {
try {
self::$object->deleteKey($key);
} catch (\OC\HintException $e) {
\OC_Template::printErrorPage($e->getMessage(), $e->getHint());
}
self::$object->deleteKey($key);
}
}

Loading…
Cancel
Save