(rv RevAndVersion)
| 91 | } |
| 92 | |
| 93 | func (entry *LogEntry) SetRevAndVersion(rv RevAndVersion) { |
| 94 | entry.RevID = rv.RevTreeID |
| 95 | if rv.CurrentSource != "" { |
| 96 | entry.SourceID = rv.CurrentSource |
| 97 | entry.Version = base.HexCasToUint64(rv.CurrentVersion) |
| 98 | } |
| 99 | } |
| 100 | |
| 101 | type ChannelMap map[string]*ChannelRemoval |
| 102 | type ChannelRemoval struct { |
no test coverage detected