Skip to content

Commit

Permalink
[chore] Omit argument for super due to identical signature
Browse files Browse the repository at this point in the history
  • Loading branch information
lessthanjacob committed Oct 14, 2024
1 parent 1f541b7 commit 0938066
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/blueprinter/errors/invalid_root.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ module Blueprinter
module Errors
class InvalidRoot < BlueprinterError
def initialize(message = 'root key must be a Symbol or a String')
super(message)
super
end
end
end
Expand Down
2 changes: 1 addition & 1 deletion lib/blueprinter/errors/meta_requires_root.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ module Blueprinter
module Errors
class MetaRequiresRoot < BlueprinterError
def initialize(message = 'adding metadata requires that a root key is set')
super(message)
super
end
end
end
Expand Down

0 comments on commit 0938066

Please sign in to comment.