diff options
| author | Lin Jen-Shin <godfat@godfat.org> | 2018-07-04 22:02:01 +0800 |
|---|---|---|
| committer | Lin Jen-Shin <godfat@godfat.org> | 2018-07-09 21:13:08 +0800 |
| commit | 3bfe30662436e48d4324b8fac5c1634df4a7cf7f (patch) | |
| tree | 3f772a44196e249ded23b453b89799095cbcc5d8 /app/services | |
| parent | 9286f5b9340f92131c320c231a5fb3e51c23bf04 (diff) | |
| download | gitlab-ce-3bfe30662436e48d4324b8fac5c1634df4a7cf7f.tar.gz | |
Resolve Naming/UncommunicativeMethod
Diffstat (limited to 'app/services')
| -rw-r--r-- | app/services/notification_recipient_service.rb | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/app/services/notification_recipient_service.rb b/app/services/notification_recipient_service.rb index 628215b55fa..d9834fd0ccc 100644 --- a/app/services/notification_recipient_service.rb +++ b/app/services/notification_recipient_service.rb @@ -10,16 +10,16 @@ module NotificationRecipientService NotificationRecipient.new(user, *args).notifiable? end - def self.build_recipients(*a) - Builder::Default.new(*a).notification_recipients + def self.build_recipients(*args) + Builder::Default.new(*args).notification_recipients end - def self.build_new_note_recipients(*a) - Builder::NewNote.new(*a).notification_recipients + def self.build_new_note_recipients(*args) + Builder::NewNote.new(*args).notification_recipients end - def self.build_merge_request_unmergeable_recipients(*a) - Builder::MergeRequestUnmergeable.new(*a).notification_recipients + def self.build_merge_request_unmergeable_recipients(*args) + Builder::MergeRequestUnmergeable.new(*args).notification_recipients end module Builder |
