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

Remove the exception catch in OC_Config, this should be handled by a higher layer
This commit is contained in:
Bart Visscher 2013-10-07 11:45:13 -07:00
commit 6a93994a01
1 changed files with 2 additions and 10 deletions

View File

@ -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);
}
}