Commented code should not be commited.

This commit is contained in:
Andrés Montañez 2014-10-11 14:54:45 -02:00
parent b8c23747f0
commit aaf92d5001

View file

@ -18,8 +18,10 @@ class TaskWithParameters extends AbstractTask
public function run()
{
//throw new Mage_Task_SkipException;
//return false;
return true;
if ($this->getParameter('booleanOption', false)) {
return true;
} else {
return false;
}
}
}