1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Fix Rubocop offense

```
Offenses:

activesupport/lib/active_support/subscriber.rb:91:17:
C: Layout/SpaceAroundOperators: Operator = should be surrounded by a single space.
      event     = event_stack.pop
```
This commit is contained in:
bogdanvlviv 2018-07-26 23:39:29 +03:00
parent 09ec075f1e
commit 1933fbaecf
No known key found for this signature in database
GPG key ID: E4ACD76A6DB6DFDD

View file

@ -88,7 +88,7 @@ module ActiveSupport
end
def finish(name, id, payload)
event = event_stack.pop
event = event_stack.pop
event.finish!
event.payload.merge!(payload)