(entity)
| 334 | } |
| 335 | |
| 336 | function entityName(entity) { |
| 337 | return l10n.displayName(entity.tags) || (l10n.displayType(entity.id) + ' ' + entity.id); |
| 338 | } |
| 339 | |
| 340 | function sameVersions(local, remote) { |
| 341 | if (local.version !== remote.version) return false; |
nothing calls this directly
no test coverage detected