diff options
-rw-r--r-- | actionpack/lib/action_dispatch/journey/core-ext/hash.rb | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/actionpack/lib/action_dispatch/journey/core-ext/hash.rb b/actionpack/lib/action_dispatch/journey/core-ext/hash.rb deleted file mode 100644 index fad5cdaa63..0000000000 --- a/actionpack/lib/action_dispatch/journey/core-ext/hash.rb +++ /dev/null @@ -1,11 +0,0 @@ -# :stopdoc: -if RUBY_VERSION < '1.9' -class Hash - def keep_if - each do |k,v| - delete(k) unless yield(k,v) - end - end -end -end -# :startdoc: |