| 36 | } |
| 37 | |
| 38 | void EditJournal::MarkAsCreated(uint32_t type, feature::GeomType geomType, m2::PointD mercator) |
| 39 | { |
| 40 | ASSERT(m_journal.empty(), ("Only empty journals can be marked as created")); |
| 41 | LOG(LDEBUG, ("Object of type ", classif().GetReadableObjectName(type), " created")); |
| 42 | AddJournalEntry({JournalEntryType::ObjectCreated, time(nullptr), osm::ObjCreateData{type, geomType, mercator}}); |
| 43 | } |
| 44 | |
| 45 | void EditJournal::AddBusinessReplacement(uint32_t old_type, uint32_t new_type) |
| 46 | { |
no test coverage detected