1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Prefer qualified names under Thread

This commit is contained in:
Nobuyoshi Nakada 2021-06-28 23:01:53 +09:00
parent 983c9ad3f1
commit 9eae8cdefb
No known key found for this signature in database
GPG key ID: 7CD2805BFA3770C6
23 changed files with 181 additions and 179 deletions

View file

@ -28,7 +28,7 @@ end
class ChatServer
def initialize
@mutex = Mutex.new
@mutex = Thread::Mutex.new
@members = {}
end