]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/node.rb
Remove redundant presence validation on belongs_to
[rails.git] / app / models / node.rb
index 8bfac993b5bd9fdd2d512a4007dfff1304cae2ec..2ae62d68482701ea48b933fa05fa837ab1d125db 100644 (file)
@@ -49,8 +49,6 @@ class Node < ApplicationRecord
                  :numericality => { :on => :update, :only_integer => true }
   validates :version, :presence => true,
                       :numericality => { :only_integer => true }
-  validates :changeset_id, :presence => true,
-                           :numericality => { :only_integer => true }
   validates :latitude, :presence => true,
                        :numericality => { :only_integer => true }
   validates :longitude, :presence => true,
@@ -206,7 +204,7 @@ class Node < ApplicationRecord
   end
 
   def tags
-    @tags ||= node_tags.collect { |t| [t.k, t.v] }.to_h
+    @tags ||= node_tags.to_h { |t| [t.k, t.v] }
   end
 
   attr_writer :tags