diff options
author | Jeremy Kemper <jeremy@bitsweat.net> | 2009-11-09 05:09:04 -0800 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2009-11-09 05:09:04 -0800 |
commit | 303991288633effea5a1d1774dbd861951303fe5 (patch) | |
tree | e81b2765a63bbd3499962528d66f65a6b32ddacf /activesupport | |
parent | 76b2d3e33730fce9680d0b6e97df12b1744fb23d (diff) | |
download | rails-303991288633effea5a1d1774dbd861951303fe5.tar.gz rails-303991288633effea5a1d1774dbd861951303fe5.tar.bz2 rails-303991288633effea5a1d1774dbd861951303fe5.zip |
Silence spurious warning
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/lib/active_support/notifications.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/notifications.rb b/activesupport/lib/active_support/notifications.rb index 9eae3bebe2..6304f496f5 100644 --- a/activesupport/lib/active_support/notifications.rb +++ b/activesupport/lib/active_support/notifications.rb @@ -111,7 +111,7 @@ module ActiveSupport def subscribe @queue.subscribe(@pattern) do |*args| - yield *args + yield(*args) end end end |