aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/template_error.rb
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2007-03-13 03:49:52 +0000
committerJeremy Kemper <jeremy@bitsweat.net>2007-03-13 03:49:52 +0000
commit83c8db981892820b747390d854595268afade8dd (patch)
treeacd18fb1a33668e50d754133c1f904317b49fdb2 /actionpack/lib/action_view/template_error.rb
parent9c0fe36d461264552198cdde493e91bd7c26c57c (diff)
downloadrails-83c8db981892820b747390d854595268afade8dd.tar.gz
rails-83c8db981892820b747390d854595268afade8dd.tar.bz2
rails-83c8db981892820b747390d854595268afade8dd.zip
Deprecation: remove deprecated instance variables.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6399 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/lib/action_view/template_error.rb')
-rw-r--r--actionpack/lib/action_view/template_error.rb8
1 files changed, 0 insertions, 8 deletions
diff --git a/actionpack/lib/action_view/template_error.rb b/actionpack/lib/action_view/template_error.rb
index 546db41f08..34ed50ae9a 100644
--- a/actionpack/lib/action_view/template_error.rb
+++ b/actionpack/lib/action_view/template_error.rb
@@ -10,8 +10,6 @@ module ActionView
@base_path, @assigns, @source, @original_exception =
base_path, assigns.dup, source, original_exception
@file_path = file_path
-
- remove_deprecated_assigns!
end
def message
@@ -82,12 +80,6 @@ module ActionView
end
private
- def remove_deprecated_assigns!
- ActionController::Base::DEPRECATED_INSTANCE_VARIABLES.each do |ivar|
- @assigns.delete(ivar)
- end
- end
-
def strip_base_path(path)
File.expand_path(path).
gsub(/^#{Regexp.escape File.expand_path(RAILS_ROOT)}/, '').