aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/formula_versions.rb
diff options
context:
space:
mode:
authorJack Nagel2015-05-29 00:20:05 -0400
committerJack Nagel2015-05-29 00:23:06 -0400
commit0fc906b03d9d385a77512acd895520092e244c93 (patch)
tree70b3cc1ebb8d3a2f66f68dded2cf5fa78d7069bf /Library/Homebrew/formula_versions.rb
parentf80748096df45534e6f38cdfb2ee83e1051cb56b (diff)
downloadbrew-0fc906b03d9d385a77512acd895520092e244c93.tar.bz2
Remove another unused default argument
Diffstat (limited to 'Library/Homebrew/formula_versions.rb')
-rw-r--r--Library/Homebrew/formula_versions.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/formula_versions.rb b/Library/Homebrew/formula_versions.rb
index 3bb7e3e55..fa6446f36 100644
--- a/Library/Homebrew/formula_versions.rb
+++ b/Library/Homebrew/formula_versions.rb
@@ -48,7 +48,7 @@ class FormulaVersions
end
end
- def bottle_version_map(branch="HEAD")
+ def bottle_version_map(branch)
map = Hash.new { |h, k| h[k] = [] }
rev_list(branch) do |rev|
formula_at_revision(rev) do |f|