Skip to content
Snippets Groups Projects
Unverified Commit e8143e5d authored by Mike McQuaid's avatar Mike McQuaid
Browse files

cask/exceptions: fix super calls.

Ensure that we always pass no arguments here.
parent 333623d1
No related branches found
No related tags found
No related merge requests found
...@@ -5,7 +5,7 @@ module Cask ...@@ -5,7 +5,7 @@ module Cask
class MultipleCaskErrors < CaskError class MultipleCaskErrors < CaskError
def initialize(errors) def initialize(errors)
super super()
@errors = errors @errors = errors
end end
...@@ -172,7 +172,7 @@ module Cask ...@@ -172,7 +172,7 @@ module Cask
attr_reader :path, :reason attr_reader :path, :reason
def initialize(path, reason) def initialize(path, reason)
super super()
@path = path @path = path
@reason = reason @reason = reason
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment