artist: drop unused member_names method.

This commit is contained in:
evazion
2019-09-06 16:18:29 -05:00
parent 4fb24c812f
commit 7d07b5f289
2 changed files with 0 additions and 8 deletions

View File

@@ -246,12 +246,6 @@ class Artist < ApplicationRecord
end
end
module GroupMethods
def member_names
members.map(&:name).join(", ")
end
end
module VersionMethods
def create_version(force=false)
if saved_change_to_name? || url_string_changed || saved_change_to_is_active? || saved_change_to_is_banned? || saved_change_to_other_names? || saved_change_to_group_name? || saved_change_to_notes? || force
@@ -524,7 +518,6 @@ class Artist < ApplicationRecord
include UrlMethods
include NameMethods
include GroupMethods
include VersionMethods
extend FactoryMethods
include NoteMethods