diff options
| author | Jack Nagel | 2014-09-14 01:10:20 -0500 |
|---|---|---|
| committer | Jack Nagel | 2014-09-14 01:10:20 -0500 |
| commit | 081036c81c7f5a8ce96c912fdacf1e1331ddde96 (patch) | |
| tree | 3cb19f229164aadcbffdbe09807d61bed42382cd /Library/Homebrew/formula_installer.rb | |
| parent | 909c2bd59e5e8a99af320f828b2a67ab0ebfb5f7 (diff) | |
| download | brew-081036c81c7f5a8ce96c912fdacf1e1331ddde96.tar.bz2 | |
Remove InstallationError superclass
None of these subclasses share any behavior other than what is inherited
from RuntimeError, so we can just get rid of the superclass.
Diffstat (limited to 'Library/Homebrew/formula_installer.rb')
| -rw-r--r-- | Library/Homebrew/formula_installer.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/formula_installer.rb b/Library/Homebrew/formula_installer.rb index ebb08773c..07bcaaf4a 100644 --- a/Library/Homebrew/formula_installer.rb +++ b/Library/Homebrew/formula_installer.rb @@ -232,7 +232,7 @@ class FormulaInstaller end end - raise UnsatisfiedRequirements.new(f, fatals) unless fatals.empty? + raise UnsatisfiedRequirements.new(fatals) unless fatals.empty? end def install_requirement_default_formula?(req, build) |
