mirror of
https://github.com/GothenburgBitFactory/timewarrior.git
synced 2025-07-07 20:06:39 +02:00
Interval: ::dump is not needed when there is ::serialize and ::json
This commit is contained in:
parent
e3f742832c
commit
b69f6b2106
3 changed files with 2 additions and 21 deletions
|
@ -121,9 +121,9 @@ std::string Timeline::dump () const
|
|||
{
|
||||
std::stringstream out;
|
||||
|
||||
out << "Timeline _range " << _range.start ().toISO () << " - " << _range.end ().toISO () << "\n";
|
||||
out << "Timeline _range " << _range.dump () << "\n";
|
||||
for (auto& i : _inclusions)
|
||||
out << " " << i.dump ();
|
||||
out << " " << i.json ();
|
||||
for (auto& e : _exclusions)
|
||||
out << " " << e.dump ();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue