]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/way.rb
Fix new rubocop warnings
[rails.git] / app / models / way.rb
index 724965ddfe4bc1a24b4de482bf6529ca131eeb90..933cb7c8b81a5bc6a7e29c3e49ac5b16b6f09fd2 100644 (file)
@@ -112,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