Actually get rid of Haml::Helpers#open.

This commit is contained in:
Nathan Weizenbaum 2008-04-29 22:49:21 -07:00
parent 0734528ab7
commit 5811636311
1 changed files with 0 additions and 9 deletions

View File

@ -334,15 +334,6 @@ module Haml
nil
end
def open(*args, &block)
warn <<END
DEPRECATION WARNING:
The Haml #open helper is deprecated and will be removed in version 2.0.
Use the #haml_tag method instead.
END
haml_tag(*args, &block)
end
# Characters that need to be escaped to HTML entities from user input
HTML_ESCAPE = {'&'=>'&amp;', '<'=>'&lt;', '>'=>'&gt;'}