aboutsummaryrefslogtreecommitdiffstats
path: root/lib/singleton.rb
diff options
context:
space:
mode:
authorkazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-10-08 07:00:01 +0000
committerkazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-10-08 07:00:01 +0000
commit6064132c42ffe99e9a0d3a6ba80a7932c6f7903d (patch)
tree98ea21370a09a06240cd88eef3320ef565240e02 /lib/singleton.rb
parent838a91633c3a50f43bcc4ccec11b41b5a102fd90 (diff)
downloadruby-6064132c42ffe99e9a0d3a6ba80a7932c6f7903d.tar.gz
Remove unnecessary `require 'thread'`
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60139 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/singleton.rb')
-rw-r--r--lib/singleton.rb1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/singleton.rb b/lib/singleton.rb
index deb0f52cd6..368febc74d 100644
--- a/lib/singleton.rb
+++ b/lib/singleton.rb
@@ -1,5 +1,4 @@
# frozen_string_literal: false
-require 'thread'
# The Singleton module implements the Singleton pattern.
#