mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
Remove missed handleRecurrence/handleUntil calls (#3771)
These were missed in #3753.
This commit is contained in:
parent
7871617e9c
commit
d6658fe26f
3 changed files with 2 additions and 16 deletions
|
@ -64,7 +64,7 @@ CmdEdit::CmdEdit() {
|
|||
_read_only = false;
|
||||
_displays_id = false;
|
||||
_needs_gc = false;
|
||||
_needs_recur_update = false;
|
||||
_needs_recur_update = true;
|
||||
_uses_context = true;
|
||||
_accepts_filter = true;
|
||||
_accepts_modifications = false;
|
||||
|
@ -78,8 +78,6 @@ CmdEdit::CmdEdit() {
|
|||
// wrench. To be used sparingly.
|
||||
int CmdEdit::execute(std::string&) {
|
||||
// Filter the tasks.
|
||||
handleUntil();
|
||||
handleRecurrence();
|
||||
Filter filter;
|
||||
std::vector<Task> filtered;
|
||||
filter.subset(filtered);
|
||||
|
|
|
@ -55,7 +55,7 @@ CmdHistoryBase<HistoryStrategy>::CmdHistoryBase() {
|
|||
_read_only = true;
|
||||
_displays_id = false;
|
||||
_needs_gc = false;
|
||||
_needs_recur_update = false;
|
||||
_needs_recur_update = true;
|
||||
_uses_context = true;
|
||||
_accepts_filter = true;
|
||||
_accepts_modifications = false;
|
||||
|
@ -294,8 +294,6 @@ int CmdHistoryBase<HistoryStrategy>::execute(std::string& output) {
|
|||
completedGroup.clear();
|
||||
|
||||
// Apply filter.
|
||||
handleUntil();
|
||||
handleRecurrence();
|
||||
Filter filter;
|
||||
std::vector<Task> filtered;
|
||||
filter.subset(filtered);
|
||||
|
|
|
@ -137,8 +137,6 @@ CmdCompletionIds::CmdCompletionIds() {
|
|||
////////////////////////////////////////////////////////////////////////////////
|
||||
int CmdCompletionIds::execute(std::string& output) {
|
||||
// Apply filter.
|
||||
handleUntil();
|
||||
handleRecurrence();
|
||||
Filter filter;
|
||||
std::vector<Task> filtered;
|
||||
filter.subset(filtered);
|
||||
|
@ -174,8 +172,6 @@ CmdZshCompletionIds::CmdZshCompletionIds() {
|
|||
////////////////////////////////////////////////////////////////////////////////
|
||||
int CmdZshCompletionIds::execute(std::string& output) {
|
||||
// Apply filter.
|
||||
handleUntil();
|
||||
handleRecurrence();
|
||||
Filter filter;
|
||||
std::vector<Task> filtered;
|
||||
filter.subset(filtered);
|
||||
|
@ -211,8 +207,6 @@ CmdUUIDs::CmdUUIDs() {
|
|||
////////////////////////////////////////////////////////////////////////////////
|
||||
int CmdUUIDs::execute(std::string& output) {
|
||||
// Apply filter.
|
||||
handleUntil();
|
||||
handleRecurrence();
|
||||
Filter filter;
|
||||
std::vector<Task> filtered;
|
||||
filter.subset(filtered);
|
||||
|
@ -247,8 +241,6 @@ CmdCompletionUuids::CmdCompletionUuids() {
|
|||
////////////////////////////////////////////////////////////////////////////////
|
||||
int CmdCompletionUuids::execute(std::string& output) {
|
||||
// Apply filter.
|
||||
handleUntil();
|
||||
handleRecurrence();
|
||||
Filter filter;
|
||||
std::vector<Task> filtered;
|
||||
filter.subset(filtered);
|
||||
|
@ -283,8 +275,6 @@ CmdZshCompletionUuids::CmdZshCompletionUuids() {
|
|||
////////////////////////////////////////////////////////////////////////////////
|
||||
int CmdZshCompletionUuids::execute(std::string& output) {
|
||||
// Apply filter.
|
||||
handleUntil();
|
||||
handleRecurrence();
|
||||
Filter filter;
|
||||
std::vector<Task> filtered;
|
||||
filter.subset(filtered);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue