Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/reference_extractor.rb')
-rw-r--r--lib/gitlab/reference_extractor.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/gitlab/reference_extractor.rb b/lib/gitlab/reference_extractor.rb
index f914123a94d..c5798bec0d7 100644
--- a/lib/gitlab/reference_extractor.rb
+++ b/lib/gitlab/reference_extractor.rb
@@ -42,10 +42,10 @@ module Gitlab
@references[type] ||= references(type)
end
- if %w(mentioned_user mentioned_group mentioned_project).include?(type.to_s)
- define_method("#{type}_ids") do
- @references[type] ||= references(type, ids_only: true)
- end
+ next unless %w(mentioned_user mentioned_group mentioned_project).include?(type.to_s)
+
+ define_method("#{type}_ids") do
+ @references[type] ||= references(type, ids_only: true)
end
end