aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/misc.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activesupport/lib/active_support/misc.rb')
-rw-r--r--activesupport/lib/active_support/misc.rb8
1 files changed, 0 insertions, 8 deletions
diff --git a/activesupport/lib/active_support/misc.rb b/activesupport/lib/active_support/misc.rb
deleted file mode 100644
index 1ca00db1e7..0000000000
--- a/activesupport/lib/active_support/misc.rb
+++ /dev/null
@@ -1,8 +0,0 @@
-def silence_warnings
- old_verbose, $VERBOSE = $VERBOSE, nil
- begin
- yield
- ensure
- $VERBOSE = old_verbose
- end
-end