remove unused method

This commit is contained in:
Raphael 2011-01-28 15:17:42 -08:00
parent c3a30bb481
commit 2dfb9f9618

View file

@ -168,14 +168,6 @@ class Person < ActiveRecord::Base
}
end
def self.from_post_comment_hash(hash)
person_ids = hash.values.flatten.map!{|c| c.person_id}.uniq
people = where(:id => person_ids)
people_hash = {}
people.each{|p| people_hash[p.id] = p}
people_hash
end
protected
def clean_url