X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/4347d9d3b00a8fffe78daa93eac5b490905f9ac8..0dc14b6e79aa3e1c91a6f30d72c5f8c673633987:/app/models/node.rb diff --git a/app/models/node.rb b/app/models/node.rb index a5346e87f..3214564c8 100644 --- a/app/models/node.rb +++ b/app/models/node.rb @@ -27,7 +27,6 @@ class Node < ApplicationRecord include GeoRecord include ConsistencyValidations include NotRedactable - include ObjectMetadata self.table_name = "current_nodes" @@ -207,7 +206,7 @@ class Node < ApplicationRecord end def tags - @tags ||= Hash[node_tags.collect { |t| [t.k, t.v] }] + @tags ||= node_tags.to_h { |t| [t.k, t.v] } end attr_writer :tags