aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support
diff options
context:
space:
mode:
authorAndrew White <andrew.white@unboxed.co>2016-11-14 12:03:48 +0000
committerAndrew White <andrew.white@unboxed.co>2016-11-14 12:03:48 +0000
commit90520d2eee9093f46757a5e2e589d2237cc960f1 (patch)
tree48f0955739cdef97a0ff8b078e91fa6a20bd4ef0 /activesupport/lib/active_support
parent7c848e6dd493ff236d33a0410a92f4c3e5cc3c7f (diff)
downloadrails-90520d2eee9093f46757a5e2e589d2237cc960f1.tar.gz
rails-90520d2eee9093f46757a5e2e589d2237cc960f1.tar.bz2
rails-90520d2eee9093f46757a5e2e589d2237cc960f1.zip
Remove deprecated method Numeric#to_formatted_s
Diffstat (limited to 'activesupport/lib/active_support')
-rw-r--r--activesupport/lib/active_support/core_ext/numeric/conversions.rb5
1 files changed, 0 insertions, 5 deletions
diff --git a/activesupport/lib/active_support/core_ext/numeric/conversions.rb b/activesupport/lib/active_support/core_ext/numeric/conversions.rb
index cebfda8d31..946f8ddeab 100644
--- a/activesupport/lib/active_support/core_ext/numeric/conversions.rb
+++ b/activesupport/lib/active_support/core_ext/numeric/conversions.rb
@@ -126,11 +126,6 @@ module ActiveSupport::NumericWithFormat
end
end
end
-
- def to_formatted_s(*args)
- to_s(*args)
- end
- deprecate to_formatted_s: :to_s
end
# Ruby 2.4+ unifies Fixnum & Bignum into Integer.