Remove missing default helper warnings

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8401 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
Jeremy Kemper
2007-12-15 02:28:06 +00:00
parent 70117b0294
commit cefea3c677

View File

@@ -177,10 +177,8 @@ module ActionController #:nodoc:
end
rescue MissingSourceFile => e
raise unless e.is_missing? module_path
logger.debug("#{name}: missing default helper path #{module_path}") if logger
rescue NameError => e
raise unless e.missing_name? module_name
logger.debug("#{name}: missing default helper module #{module_name}") if logger
end
def inherited_with_helper(child)