Merge pull request #21858 from Gaurav2728/protected_method_nodoc

nodoc for active support protected method [CI skip]
This commit is contained in:
Rafael Mendonça França 2015-10-20 15:04:00 -02:00
commit d68e81afa0
1 changed files with 3 additions and 3 deletions

View File

@ -748,15 +748,15 @@ module ActiveSupport
protected
def get_callbacks(name)
def get_callbacks(name) # :nodoc:
send "_#{name}_callbacks"
end
def set_callbacks(name, callbacks)
def set_callbacks(name, callbacks) # :nodoc:
send "_#{name}_callbacks=", callbacks
end
def deprecated_false_terminator
def deprecated_false_terminator # :nodoc:
Proc.new do |target, result_lambda|
terminate = true
catch(:abort) do