Interval: ::dump is not needed when there is ::serialize and ::json

This commit is contained in:
Paul Beckingham 2016-04-21 21:23:12 -04:00
parent e3f742832c
commit b69f6b2106
3 changed files with 2 additions and 21 deletions

View file

@ -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 ();