Update the default deprecation message to not promise that theres more info at the Rails site [#776 state:resolved]

This commit is contained in:
David Heinemeier Hansson 2008-10-30 12:42:23 +01:00
parent a4b4463fca
commit ea2545fd8d
1 changed files with 2 additions and 2 deletions

View File

@ -51,8 +51,8 @@ module ActiveSupport
private
def deprecation_message(callstack, message = nil)
message ||= "You are using deprecated behavior which will be removed from Rails 2.0."
"DEPRECATION WARNING: #{message} See http://www.rubyonrails.org/deprecation for details. #{deprecation_caller_message(callstack)}"
message ||= "You are using deprecated behavior which will be removed from the next major or minor release."
"DEPRECATION WARNING: #{message}. #{deprecation_caller_message(callstack)}"
end
def deprecation_caller_message(callstack)