Skip to content

Commit

Permalink
Adding explicit parameter to super call
Browse files Browse the repository at this point in the history
Prior to this commit the perform method had an explicit call to super
with an implicit passing of parameters. This commit adds an explicit
passing of those parameters.
  • Loading branch information
jeremyf committed May 12, 2020
1 parent 76c95c3 commit 49ac3e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/jobs/user_edit_profile_event_job.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
class UserEditProfileEventJob < EventJob
def perform(editor)
@editor = editor
super
super(editor)
end

def action
Expand Down

0 comments on commit 49ac3e9

Please sign in to comment.