aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJack Nagel2014-08-23 22:41:35 -0500
committerJack Nagel2014-08-23 22:41:35 -0500
commitc8ddc36646ac640fbcea00f8a0fcce101c1f0a05 (patch)
treee94264ce78cb2534c2b51e058c3e9fb19ab04e39
parent1d0a0a7ed4af104e5a7e062d9c0591d16933f962 (diff)
downloadhomebrew-c8ddc36646ac640fbcea00f8a0fcce101c1f0a05.tar.bz2
Remove an unnecessary default argument
-rw-r--r--Library/Homebrew/dependency.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/dependency.rb b/Library/Homebrew/dependency.rb
index dfb337446..1a838aaee 100644
--- a/Library/Homebrew/dependency.rb
+++ b/Library/Homebrew/dependency.rb
@@ -42,7 +42,7 @@ class Dependency
installed? && missing_options(inherited_options).empty?
end
- def missing_options(inherited_options=[])
+ def missing_options(inherited_options)
missing = options | inherited_options
missing -= Tab.for_formula(to_formula).used_options
missing