mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
Expressions
- Removed unnecessary enquoted blank strings.
This commit is contained in:
parent
09d94a0712
commit
19cb6110bd
1 changed files with 6 additions and 6 deletions
|
@ -859,15 +859,15 @@ void Expression::expand_attmod ()
|
|||
}
|
||||
else if (mod == "none")
|
||||
{
|
||||
temp.push_back (Triple (name, "lvalue", arg->_third));
|
||||
temp.push_back (Triple ("==", "op", arg->_third));
|
||||
temp.push_back (Triple ("\"\"", "string", arg->_third));
|
||||
temp.push_back (Triple (name, "lvalue", arg->_third));
|
||||
temp.push_back (Triple ("==", "op", arg->_third));
|
||||
temp.push_back (Triple ("", "string", arg->_third));
|
||||
}
|
||||
else if (mod == "any")
|
||||
{
|
||||
temp.push_back (Triple (name, "lvalue", arg->_third));
|
||||
temp.push_back (Triple ("!=", "op", arg->_third));
|
||||
temp.push_back (Triple ("\"\"", "string", arg->_third));
|
||||
temp.push_back (Triple (name, "lvalue", arg->_third));
|
||||
temp.push_back (Triple ("!=", "op", arg->_third));
|
||||
temp.push_back (Triple ("", "string", arg->_third));
|
||||
}
|
||||
else if (mod == "is" || mod == "equals")
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue