summaryrefslogtreecommitdiff
path: root/app/Model
diff options
context:
space:
mode:
Diffstat (limited to 'app/Model')
-rw-r--r--app/Model/TaskStatus.php17
1 files changed, 0 insertions, 17 deletions
diff --git a/app/Model/TaskStatus.php b/app/Model/TaskStatus.php
index 3f62667c..23d77fa4 100644
--- a/app/Model/TaskStatus.php
+++ b/app/Model/TaskStatus.php
@@ -13,23 +13,6 @@ use Event\TaskEvent;
class TaskStatus extends Base
{
/**
- * Return the list of statuses
- *
- * @access public
- * @param boolean $prepend Prepend default value
- * @return array
- */
- public function getList($prepend = false)
- {
- $listing = $prepend ? array(-1 => t('All status')) : array();
-
- return $listing + array(
- Task::STATUS_OPEN => t('Open'),
- Task::STATUS_CLOSED => t('Closed'),
- );
- }
-
- /**
* Return true if the task is closed
*
* @access public