summaryrefslogtreecommitdiffstats
path: root/tasklst.c
diff options
context:
space:
mode:
Diffstat (limited to 'tasklst.c')
-rw-r--r--tasklst.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/tasklst.c b/tasklst.c
index a7b0a09..7e8b22f 100644
--- a/tasklst.c
+++ b/tasklst.c
@@ -89,8 +89,6 @@ task_lst_count_done(TaskLst list)
Task *
task_lst_get_task(TaskLst list, int i)
{
- /* TODO: Maybe binary search? */
-
Task *ptr;
for (ptr = list.first; i > 0; ptr = ptr->next) {