We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e1e1e9 commit 2f72918Copy full SHA for 2f72918
lib/concurrent/utility/native_extension_loader.rb
@@ -25,9 +25,6 @@ def allow_c_extensions?
25
# may be a Windows cross-compiled native gem
26
require "concurrent/#{RUBY_VERSION[0..2]}/extension"
27
@c_ext_loaded = true
28
- end,
29
- lambda do
30
- warn 'Performance on MRI may be improved with the concurrent-ruby-ext gem. Please see http://concurrent-ruby.com'
31
end]
32
33
tries.each do |try|
@@ -45,7 +42,7 @@ def allow_c_extensions?
45
42
require 'concurrent_ruby_ext'
46
43
@java_ext_loaded = true
47
44
rescue LoadError
48
- warn 'Performance on JRuby may be improved by installing the pre-compiled Java extensions. Please see http://concurrent-ruby.com'
+ # move on with pure-Ruby implementations
49
end
50
51
0 commit comments