diff options
author | John Firebaugh <john_firebaugh@bigfix.com> | 2010-09-24 18:38:16 -0700 |
---|---|---|
committer | John Firebaugh <john_firebaugh@us.ibm.com> | 2010-10-29 15:27:19 -0700 |
commit | 7bbad753e2545a530394f2fe73b7edfef1523ab0 (patch) | |
tree | f22659335bf6d1eaecfde03c134aefdfb5736e8c /actionpack/lib | |
parent | 973b90877755522772480bce73fcbc17320da2ef (diff) | |
download | rails-7bbad753e2545a530394f2fe73b7edfef1523ab0.tar.gz rails-7bbad753e2545a530394f2fe73b7edfef1523ab0.tar.bz2 rails-7bbad753e2545a530394f2fe73b7edfef1523ab0.zip |
ActiveSupport::Deprecation.silence no longer needed.
Diffstat (limited to 'actionpack/lib')
-rw-r--r-- | actionpack/lib/action_view/template/error.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_view/template/error.rb b/actionpack/lib/action_view/template/error.rb index ff256738a9..3c7380ee19 100644 --- a/actionpack/lib/action_view/template/error.rb +++ b/actionpack/lib/action_view/template/error.rb @@ -62,7 +62,7 @@ module ActionView end def message - ActiveSupport::Deprecation.silence { original_exception.message } + original_exception.message end def sub_template_message |