diff options
author | Hiroshi SHIBATA <[email protected]> | 2023-03-22 12:10:38 +0900 |
---|---|---|
committer | Hiroshi SHIBATA <[email protected]> | 2023-03-23 17:18:49 +0900 |
commit | 25ed2e7415ded52837e3ade1b43efe1def9493d2 (patch) | |
tree | e25c7a66fa9f5dabf89a5525125bddfd20b6b448 | |
parent | 7e3612585da4ffa8440d1120043f7dca00c32624 (diff) |
[rubygems/rubygems] util/rubocop -A --only Lint/EmptyExpression
Thread.report_on_exception is always defined after Ruby 2.4 or later.
https://github.com/rubygems/rubygems/commit/274da54f38
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/7582
-rw-r--r-- | lib/rubygems/core_ext/tcpsocket_init.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rubygems/core_ext/tcpsocket_init.rb b/lib/rubygems/core_ext/tcpsocket_init.rb index c9e0a92953..283931d56a 100644 --- a/lib/rubygems/core_ext/tcpsocket_init.rb +++ b/lib/rubygems/core_ext/tcpsocket_init.rb @@ -17,7 +17,7 @@ module CoreExtensions cond_var = Thread::ConditionVariable.new Addrinfo.foreach(host, serv, nil, :STREAM) do |addr| - Thread.report_on_exception = false if defined? Thread.report_on_exception = () + Thread.report_on_exception = false threads << Thread.new(addr) do # give head start to ipv6 addresses |