diff options
author | Sean Collins <sean@cllns.com> | 2018-02-17 16:00:57 -0700 |
---|---|---|
committer | Jeremy Daer <jeremydaer@gmail.com> | 2018-02-17 15:34:07 -0800 |
commit | 33886e28f1c06b7f252c1db0e433794b00c54a2f (patch) | |
tree | 66686cce870139430e192ddacd8af3a92222bb2f /activesupport/lib/active_support/values | |
parent | 0f98954a83a5ec1d7c8def958422a62f0ead59a1 (diff) | |
download | rails-33886e28f1c06b7f252c1db0e433794b00c54a2f.tar.gz rails-33886e28f1c06b7f252c1db0e433794b00c54a2f.tar.bz2 rails-33886e28f1c06b7f252c1db0e433794b00c54a2f.zip |
Remove require Object#blank? monkey patch
Object#blank? used to be used in this file, but it's not anymore.
This avoids a monkey-patch, for those who want to use just this isolated
feature of ActiveSupport.
Diffstat (limited to 'activesupport/lib/active_support/values')
-rw-r--r-- | activesupport/lib/active_support/values/time_zone.rb | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/values/time_zone.rb b/activesupport/lib/active_support/values/time_zone.rb index b75f5733b5..1de4748a46 100644 --- a/activesupport/lib/active_support/values/time_zone.rb +++ b/activesupport/lib/active_support/values/time_zone.rb @@ -2,7 +2,6 @@ require "tzinfo" require "concurrent/map" -require "active_support/core_ext/object/blank" module ActiveSupport # The TimeZone class serves as a wrapper around TZInfo::Timezone instances. |