aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/formula_installer.rb
diff options
context:
space:
mode:
authorJack Nagel2014-09-14 01:10:20 -0500
committerJack Nagel2014-09-14 01:10:20 -0500
commit081036c81c7f5a8ce96c912fdacf1e1331ddde96 (patch)
tree3cb19f229164aadcbffdbe09807d61bed42382cd /Library/Homebrew/formula_installer.rb
parent909c2bd59e5e8a99af320f828b2a67ab0ebfb5f7 (diff)
downloadbrew-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.rb2
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)