Get rid of now-useless options_for_cache method.

git-svn-id: svn://hamptoncatlin.com/haml/trunk@634 7063305b-7217-0410-af8c-cdc13e5119b9
This commit is contained in:
nex3 2007-11-22 23:02:42 +00:00
parent 2f53b19c9b
commit d9bc87f140
1 changed files with 0 additions and 12 deletions

View File

@ -868,17 +868,5 @@ module Haml
@to_close_stack.push(value)
@template_tabs += 1
end
# Returns a hash of options
# that identifies the options for a given template
# so that e.g. the same template with a different suppress_eval value causes recompilation
# but the same template with the same locals but different values does not.
def options_for_cache
opts = options.dup
opts[:locals] = opts[:locals].keys
opts[:filters] = opts[:filters].to_a
opts.delete :filename
opts.to_a
end
end
end