diff options
author | Gaurav Sharma <gaurav2728@gmail.com> | 2015-10-04 01:18:21 +0530 |
---|---|---|
committer | Gaurav Sharma <gaurav2728@gmail.com> | 2015-10-04 01:18:21 +0530 |
commit | cd50eefdc5e2b795150ccd2a115672ae09dd17a8 (patch) | |
tree | 01aa81c173cf7317381e70b6bde95459313b124b /activesupport | |
parent | 55ac94cec45328657c579024bb835fe18bb2d32b (diff) | |
download | rails-cd50eefdc5e2b795150ccd2a115672ae09dd17a8.tar.gz rails-cd50eefdc5e2b795150ccd2a115672ae09dd17a8.tar.bz2 rails-cd50eefdc5e2b795150ccd2a115672ae09dd17a8.zip |
nodoc for active support protected method [CI skip]
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/lib/active_support/callbacks.rb | 6 |
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 |