Unneccessary code removed
[core.git] / inc / classes / main / resolver / command / web / class_WebCommandResolver.php
index f4eba1210c43473119c1ba5c3fbbc39e28e74611..cb23dd1b526e69ae1728684f1019a1d8ea6c4dc7 100644 (file)
@@ -149,9 +149,6 @@ class WebCommandResolver extends BaseCommandResolver implements CommandResolver
         *                                                                              command class is missing (bad!)
         */
        private function loadCommand ($commandName) {
         *                                                                              command class is missing (bad!)
         */
        private function loadCommand ($commandName) {
-               // Cache default command
-               $defaultCommand = $this->getConfigInstance()->readConfig('default_web_command');
-
                // Init command instance
                $commandInstance = null;
 
                // Init command instance
                $commandInstance = null;
 
@@ -164,7 +161,7 @@ class WebCommandResolver extends BaseCommandResolver implements CommandResolver
                // Is this class loaded?
                if (!class_exists($this->getClassName())) {
                        // Class not found, so throw an exception
                // Is this class loaded?
                if (!class_exists($this->getClassName())) {
                        // Class not found, so throw an exception
-                       throw new InvalidCommandException(array($this, $defaultCommand), self::EXCEPTION_INVALID_COMMAND);
+                       throw new InvalidCommandException(array($this, $commandName), self::EXCEPTION_INVALID_COMMAND);
                } // END - if
 
                // Initiate the command
                } // END - if
 
                // Initiate the command