diff options
author | Andrew White <andrew.white@unboxed.co> | 2016-11-02 11:43:27 +0000 |
---|---|---|
committer | Andrew White <andrew.white@unboxed.co> | 2016-11-02 11:43:27 +0000 |
commit | b82fa5cd2e39bf400f61478173885d6c0b480384 (patch) | |
tree | 836b579edf4e7da8fa807e415b1dff38b358b041 | |
parent | f762cf05a55b827684b756f6affdcd54923003c0 (diff) | |
download | rails-b82fa5cd2e39bf400f61478173885d6c0b480384.tar.gz rails-b82fa5cd2e39bf400f61478173885d6c0b480384.tar.bz2 rails-b82fa5cd2e39bf400f61478173885d6c0b480384.zip |
Fix warning with ambiguous *args
-rw-r--r-- | activesupport/lib/active_support/tagged_logging.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/tagged_logging.rb b/activesupport/lib/active_support/tagged_logging.rb index 232c367d26..19a003757f 100644 --- a/activesupport/lib/active_support/tagged_logging.rb +++ b/activesupport/lib/active_support/tagged_logging.rb @@ -78,7 +78,7 @@ module ActiveSupport end else def respond_to_missing?(*args) - @logger.respond_to? *args + @logger.respond_to?(*args) end end |