aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2018-01-03 05:52:54 +0900
committerRyuta Kamizono <kamipo@gmail.com>2018-01-03 05:52:54 +0900
commitb6c6d28d2c9f29c6c97564700c4847748300d323 (patch)
tree52f2eed53211e1bd6d8d57f9619b1f76adc10bf8 /activesupport
parent401c42e3c3ed78e6222dd6abb982216ccd8d519e (diff)
downloadrails-b6c6d28d2c9f29c6c97564700c4847748300d323.tar.gz
rails-b6c6d28d2c9f29c6c97564700c4847748300d323.tar.bz2
rails-b6c6d28d2c9f29c6c97564700c4847748300d323.zip
Remove undefined `track_deletion` callback [ci skip]
Diffstat (limited to 'activesupport')
-rw-r--r--activesupport/lib/active_support/core_ext/module/concerning.rb3
1 files changed, 0 insertions, 3 deletions
diff --git a/activesupport/lib/active_support/core_ext/module/concerning.rb b/activesupport/lib/active_support/core_ext/module/concerning.rb
index 800bf213cc..7bbbf321ab 100644
--- a/activesupport/lib/active_support/core_ext/module/concerning.rb
+++ b/activesupport/lib/active_support/core_ext/module/concerning.rb
@@ -30,7 +30,6 @@ class Module
# has_many :events
#
# before_create :track_creation
- # after_destroy :track_deletion
#
# private
# def track_creation
@@ -52,7 +51,6 @@ class Module
# included do
# has_many :events
# before_create :track_creation
- # after_destroy :track_deletion
# end
#
# private
@@ -90,7 +88,6 @@ class Module
# included do
# has_many :events
# before_create :track_creation
- # after_destroy :track_deletion
# end
#
# private