diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2010-07-17 14:45:59 -0700 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2010-07-17 14:45:59 -0700 |
commit | 606d8fdfc8b86800fb738854c240c1c15bd272bb (patch) | |
tree | 197e3932ce21b0933f76d0ead8b921c4ab8663db /activesupport | |
parent | fa73e777a1dac2daaa14f781b8a17102ca47ea8b (diff) | |
download | rails-606d8fdfc8b86800fb738854c240c1c15bd272bb.tar.gz rails-606d8fdfc8b86800fb738854c240c1c15bd272bb.tar.bz2 rails-606d8fdfc8b86800fb738854c240c1c15bd272bb.zip |
drained? is never called
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/lib/active_support/notifications/fanout.rb | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/activesupport/lib/active_support/notifications/fanout.rb b/activesupport/lib/active_support/notifications/fanout.rb index 6dfc3c0a99..7eefb7f20a 100644 --- a/activesupport/lib/active_support/notifications/fanout.rb +++ b/activesupport/lib/active_support/notifications/fanout.rb @@ -49,10 +49,6 @@ module ActiveSupport true end - def drained? - true - end - def subscribed_to?(name) !@pattern || @pattern === name.to_s end |