aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew White <andrew.white@unboxed.co>2016-11-02 11:43:27 +0000
committerAndrew White <andrew.white@unboxed.co>2016-11-02 11:43:27 +0000
commitb82fa5cd2e39bf400f61478173885d6c0b480384 (patch)
tree836b579edf4e7da8fa807e415b1dff38b358b041
parentf762cf05a55b827684b756f6affdcd54923003c0 (diff)
downloadrails-b82fa5cd2e39bf400f61478173885d6c0b480384.tar.gz
rails-b82fa5cd2e39bf400f61478173885d6c0b480384.tar.bz2
rails-b82fa5cd2e39bf400f61478173885d6c0b480384.zip
Fix warning with ambiguous *args
-rw-r--r--activesupport/lib/active_support/tagged_logging.rb2
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