Commit 23c277d5 authored by Dmitry Gruzd's avatar Dmitry Gruzd

Eliminate warnings about unused variables

parent 9fd594b7
...@@ -9,8 +9,7 @@ Gitlab::Seeder.quiet do ...@@ -9,8 +9,7 @@ Gitlab::Seeder.quiet do
state: [:active, :closed].sample, state: [:active, :closed].sample,
} }
milestone = Milestones::CreateService.new( Milestones::CreateService.new(project, project.team.users.sample, milestone_params).execute
project, project.team.users.sample, milestone_params).execute
print '.' print '.'
end end
......
...@@ -45,7 +45,7 @@ module Gitlab ...@@ -45,7 +45,7 @@ module Gitlab
end end
def total_events_by_author_count def total_events_by_author_count
all_counts.each_with_object({}) do |((author_id, target_type, action), count), hash| all_counts.each_with_object({}) do |((author_id, _target_type, _action), count), hash|
hash[author_id] ||= 0 hash[author_id] ||= 0
hash[author_id] += count hash[author_id] += count
end end
......
...@@ -71,7 +71,7 @@ module Gitlab ...@@ -71,7 +71,7 @@ module Gitlab
# Convert from an indexed by name to an array indexed by path # Convert from an indexed by name to an array indexed by path
# If a submodule doesn't have a path, it is considered bogus # If a submodule doesn't have a path, it is considered bogus
# and is ignored # and is ignored
submodules_by_name.each_with_object({}) do |(name, data), results| submodules_by_name.each_with_object({}) do |(_name, data), results|
path = data.delete 'path' path = data.delete 'path'
next unless path next unless path
......
...@@ -117,7 +117,7 @@ module CycleAnalyticsHelpers ...@@ -117,7 +117,7 @@ module CycleAnalyticsHelpers
data = data_fn[self] data = data_fn[self]
end_time = rand(1..10).days.from_now end_time = rand(1..10).days.from_now
end_time_conditions.each_with_index do |(condition_name, condition_fn), index| end_time_conditions.each_with_index do |(_condition_name, condition_fn), index|
Timecop.freeze(end_time + index.days) { condition_fn[self, data] } Timecop.freeze(end_time + index.days) { condition_fn[self, data] }
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment