aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2014-08-23 22:41:35 -0500
committerJack Nagel2014-08-23 22:41:35 -0500
commit566442606a817ceaa3d3e305b53f5f2634e3e793 (patch)
tree3540bc91e9511eaf784753505515e0501fce05e5 /Library
parent05bb612ce71c9d16346a7ac95a578c33ed055cb8 (diff)
downloadbrew-566442606a817ceaa3d3e305b53f5f2634e3e793.tar.bz2
Remove an unnecessary default argument
Diffstat (limited to 'Library')
-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