aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2015-10-20 15:04:00 -0200
committerRafael Mendonça França <rafaelmfranca@gmail.com>2015-10-20 15:04:00 -0200
commitd68e81afa0e5b2697755a34e9b1d11b9b5d1df9d (patch)
tree6d97bd8c322e1923f823c57b8452e6d839e31c80 /activesupport
parent857263445035404786e1f9785b76f3f4ddb7ca12 (diff)
parentcd50eefdc5e2b795150ccd2a115672ae09dd17a8 (diff)
downloadrails-d68e81afa0e5b2697755a34e9b1d11b9b5d1df9d.tar.gz
rails-d68e81afa0e5b2697755a34e9b1d11b9b5d1df9d.tar.bz2
rails-d68e81afa0e5b2697755a34e9b1d11b9b5d1df9d.zip
Merge pull request #21858 from Gaurav2728/protected_method_nodoc
nodoc for active support protected method [CI skip]
Diffstat (limited to 'activesupport')
-rw-r--r--activesupport/lib/active_support/callbacks.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/activesupport/lib/active_support/callbacks.rb b/activesupport/lib/active_support/callbacks.rb
index 252374e817..d43fde03a9 100644
--- a/activesupport/lib/active_support/callbacks.rb
+++ b/activesupport/lib/active_support/callbacks.rb
@@ -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