Commit 15f31daa authored by Kyle Fuller's avatar Kyle Fuller

[Rubocop] Silence shadowing outer local variable

parent 6f547d2a
...@@ -479,8 +479,8 @@ module Pod ...@@ -479,8 +479,8 @@ module Pod
url = 'https://github.com/CocoaPods/Specs.git' url = 'https://github.com/CocoaPods/Specs.git'
[SourcesManager.find_or_create_source_with_url(url)] [SourcesManager.find_or_create_source_with_url(url)]
else else
sources.map do |url| sources.map do |source_url|
SourcesManager.find_or_create_source_with_url(url) SourcesManager.find_or_create_source_with_url(source_url)
end end
end end
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