X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/7599f98957334d1924550205f7ba12a726de7eb0..e957aaacb622648a890657ed0880366c1f207699:/app/models/note_comment.rb diff --git a/app/models/note_comment.rb b/app/models/note_comment.rb index 0500acb8b..399029118 100644 --- a/app/models/note_comment.rb +++ b/app/models/note_comment.rb @@ -10,15 +10,6 @@ class NoteComment < ActiveRecord::Base validates_associated :author validates_inclusion_of :event, :in => [ "opened", "closed", "reopened", "commented", "hidden" ] - # Return the author name - def author_name - if self.author_id.nil? - self.read_attribute(:author_name) - else - self.author.display_name - end - end - # Return the comment text def body RichText.new("text", read_attribute(:body))