mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
Bug
- The modify command no longer claims that a task was modified if no changes were applied.
This commit is contained in:
parent
19f598419e
commit
9ada2f554a
3 changed files with 26 additions and 25 deletions
|
@ -749,9 +749,8 @@ void Task::removeDependency (const std::string& uuid)
|
|||
std::string combined;
|
||||
join (combined, ",", deps);
|
||||
set ("depends", combined);
|
||||
recalc_urgency = true;
|
||||
}
|
||||
|
||||
recalc_urgency = true;
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
@ -762,8 +761,6 @@ void Task::removeDependency (int id)
|
|||
removeDependency (uuid);
|
||||
else
|
||||
throw std::string (STRING_TASK_DEPEND_NO_UUID);
|
||||
|
||||
recalc_urgency = true;
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue