Merge pull request #8419 from MikeMcQuaid/cask-exceptions-fix

cask/exceptions: fix super calls.
This commit is contained in:
Mike McQuaid 2020-08-21 13:33:57 +01:00 committed by GitHub
commit 14ec695c1d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,7 +5,7 @@ module Cask
class MultipleCaskErrors < CaskError
def initialize(errors)
super
super()
@errors = errors
end
@ -172,7 +172,7 @@ module Cask
attr_reader :path, :reason
def initialize(path, reason)
super
super()
@path = path
@reason = reason