X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/dbe165bbb3d6eda37d9579f1ac767599f9055607..891ec3d75cdb93a97759c2311ad8e1b559421280:/app/models/way.rb diff --git a/app/models/way.rb b/app/models/way.rb index f0b35a88a..34e568e4a 100644 --- a/app/models/way.rb +++ b/app/models/way.rb @@ -83,16 +83,6 @@ class Way < ActiveRecord::Base way end - # Find a way given it's ID, and in a single SQL call also grab its nodes - # - - # You can't pull in all the tags too unless we put a sequence_id on the way_tags table and have a multipart key - def self.find_eager(id) - Way.find(id, :include => { :way_nodes => :node }) - # If waytag had a multipart key that was real, you could do this: - # Way.find(id, :include => [:way_tags, {:way_nodes => :node}]) - end - # Find a way given it's ID, and in a single SQL call also grab its nodes and tags def to_xml doc = OSM::API.new.get_xml_doc @@ -242,11 +232,6 @@ class Way < ActiveRecord::Base end end - # Temporary method to match interface to nodes - def tags_as_hash - tags - end - ## # if any referenced nodes are placeholder IDs (i.e: are negative) then # this calling this method will fix them using the map from placeholders