diff options
| author | Jack Nagel | 2014-08-23 22:41:35 -0500 |
|---|---|---|
| committer | Jack Nagel | 2014-08-23 22:41:35 -0500 |
| commit | 566442606a817ceaa3d3e305b53f5f2634e3e793 (patch) | |
| tree | 3540bc91e9511eaf784753505515e0501fce05e5 /Library | |
| parent | 05bb612ce71c9d16346a7ac95a578c33ed055cb8 (diff) | |
| download | brew-566442606a817ceaa3d3e305b53f5f2634e3e793.tar.bz2 | |
Remove an unnecessary default argument
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Homebrew/dependency.rb | 2 |
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 |
