diff options
Diffstat (limited to 'activesupport/lib/active_support/json/encoders/false_class.rb')
-rw-r--r-- | activesupport/lib/active_support/json/encoders/false_class.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/json/encoders/false_class.rb b/activesupport/lib/active_support/json/encoders/false_class.rb index 78524e2a03..bf0844334b 100644 --- a/activesupport/lib/active_support/json/encoders/false_class.rb +++ b/activesupport/lib/active_support/json/encoders/false_class.rb @@ -1,5 +1,5 @@ class FalseClass - def to_json #:nodoc: + def to_json(options = nil) #:nodoc: 'false' end end |