diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2015-01-02 22:13:27 -0300 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2015-01-04 11:58:40 -0300 |
commit | e1c8b9f688c56aaedac9466a4343df955b4a67ec (patch) | |
tree | 1efbc3813860de8ee91d1f1f2ef8a704bc98e9ba /activesupport/lib | |
parent | 481e49c64f790e46f4aff3ed539ed227d2eb46cb (diff) | |
download | rails-e1c8b9f688c56aaedac9466a4343df955b4a67ec.tar.gz rails-e1c8b9f688c56aaedac9466a4343df955b4a67ec.tar.bz2 rails-e1c8b9f688c56aaedac9466a4343df955b4a67ec.zip |
Remove deprecated `ActiveSupport::SafeBuffer#prepend`
Diffstat (limited to 'activesupport/lib')
-rw-r--r-- | activesupport/lib/active_support/core_ext/string/output_safety.rb | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/activesupport/lib/active_support/core_ext/string/output_safety.rb b/activesupport/lib/active_support/core_ext/string/output_safety.rb index 231eaedbba..ba8d4acd6d 100644 --- a/activesupport/lib/active_support/core_ext/string/output_safety.rb +++ b/activesupport/lib/active_support/core_ext/string/output_safety.rb @@ -1,6 +1,5 @@ require 'erb' require 'active_support/core_ext/kernel/singleton_class' -require 'active_support/deprecation' class ERB module Util @@ -190,11 +189,6 @@ module ActiveSupport #:nodoc: super(html_escape_interpolated_argument(value)) end - def prepend!(value) - ActiveSupport::Deprecation.deprecation_warning "ActiveSupport::SafeBuffer#prepend!", :prepend - prepend value - end - def +(other) dup.concat(other) end |