]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/way.rb
Fix new rubocop warnings
[rails.git] / app / models / way.rb
index 7bb82b281bc4e10603ea2ffc29eee928c4ff9709..933cb7c8b81a5bc6a7e29c3e49ac5b16b6f09fd2 100644 (file)
@@ -22,7 +22,6 @@ class Way < ApplicationRecord
 
   include ConsistencyValidations
   include NotRedactable
-  include ObjectMetadata
 
   self.table_name = "current_ways"
 
@@ -113,7 +112,7 @@ class Way < ApplicationRecord
   end
 
   def tags
-    @tags ||= way_tags.collect { |t| [t.k, t.v] }.to_h
+    @tags ||= way_tags.to_h { |t| [t.k, t.v] }
   end
 
   attr_writer :nds, :tags