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
Signed-off-by: Jacob Sheehy <[email protected]>
  • Loading branch information
lessthanjacob committed Oct 14, 2024
1 parent 1f541b7 commit ee09ecd
Show file tree
Hide file tree
Showing 3 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
Empty file added lib/blueprinter/serializer.rb
Empty file.

0 comments on commit ee09ecd

Please sign in to comment.