Module: nagvis Branch: master Commit: 1f5e3c2de2daff443fcbd5b8988959ad7633d5e6 URL: http://nagvis.git.sourceforge.net/git/gitweb.cgi?p=nagvis/nagvis;a=commit;h=1f5e3c2de2daff443fcbd5b8988959ad7633d5e6
Author: LaMi <[email protected]> Date: Tue Apr 6 23:15:53 2010 +0200 Removed some deprecated comments --- .../core/classes/CoreAuthorisationModSQLite.php | 4 ---- 1 files changed, 0 insertions(+), 4 deletions(-) diff --git a/share/server/core/classes/CoreAuthorisationModSQLite.php b/share/server/core/classes/CoreAuthorisationModSQLite.php index 10752fe..9bddfdd 100644 --- a/share/server/core/classes/CoreAuthorisationModSQLite.php +++ b/share/server/core/classes/CoreAuthorisationModSQLite.php @@ -50,7 +50,6 @@ class CoreAuthorisationModSQLite extends CoreAuthorisationModule { public function deletePermission($mod, $name) { if($name === '') { - // FIXME: Errorhandling return false; } @@ -60,7 +59,6 @@ class CoreAuthorisationModSQLite extends CoreAuthorisationModule { case 'Rotation': return $this->DB->deletePermissions($mod, $name); default: - // FIXME: Errorhandling return false; break; } @@ -68,7 +66,6 @@ class CoreAuthorisationModSQLite extends CoreAuthorisationModule { public function createPermission($mod, $name) { if($name === '') { - // FIXME: Errorhandling return false; } @@ -80,7 +77,6 @@ class CoreAuthorisationModSQLite extends CoreAuthorisationModule { case 'Rotation': return $this->DB->createRotationPermissions($name); default: - // FIXME: Errorhandling return false; break; } ------------------------------------------------------------------------------ Download Intel® Parallel Studio Eval Try the new software tools for yourself. Speed compiling, find bugs proactively, and fine-tune applications for parallel performance. See why Intel Parallel Studio got high marks during beta. http://p.sf.net/sfu/intel-sw-dev _______________________________________________ Nagvis-checkins mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/nagvis-checkins
