method
disable_clear!
v7.0.0 -
Show latest stable
- Class:
ActiveSupport::DescendantsTracker
disable_clear!()public
No documentation available.
# File activesupport/lib/active_support/descendants_tracker.rb, line 50
def disable_clear! # :nodoc:
unless @clear_disabled
@clear_disabled = true
remove_method(:subclasses)
remove_method(:descendants)
@@excluded_descendants = nil
end
end