aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib
diff options
context:
space:
mode:
authorJohn Hawthorn <john@hawthorn.email>2019-05-22 16:59:06 -0700
committerJohn Hawthorn <john@hawthorn.email>2019-05-23 11:21:17 -0700
commitf3bb3f1c4e2a879b56c7cd22dcd4ec41da17760b (patch)
tree9274b451e7785fdf676457d5884f1e2674a01bdf /activesupport/lib
parenta85c372798723b900762c27e62c35689905327aa (diff)
downloadrails-f3bb3f1c4e2a879b56c7cd22dcd4ec41da17760b.tar.gz
rails-f3bb3f1c4e2a879b56c7cd22dcd4ec41da17760b.tar.bz2
rails-f3bb3f1c4e2a879b56c7cd22dcd4ec41da17760b.zip
Delete evented_file_update_checker existing_parent
This is no longer used as of caa3cc8868206f8109e0d633efb09d31e94ef635
Diffstat (limited to 'activesupport/lib')
-rw-r--r--activesupport/lib/active_support/evented_file_update_checker.rb7
1 files changed, 0 insertions, 7 deletions
diff --git a/activesupport/lib/active_support/evented_file_update_checker.rb b/activesupport/lib/active_support/evented_file_update_checker.rb
index 3893b0de0e..3f6fd58f5e 100644
--- a/activesupport/lib/active_support/evented_file_update_checker.rb
+++ b/activesupport/lib/active_support/evented_file_update_checker.rb
@@ -187,13 +187,6 @@ module ActiveSupport
lcsp
end
- # Returns the deepest existing ascendant, which could be the argument itself.
- def existing_parent(dir)
- dir.ascend do |ascendant|
- break ascendant if ascendant.directory?
- end
- end
-
# Filters out directories which are descendants of others in the collection (stable).
def filter_out_descendants(dirs)
return dirs if dirs.length < 2