From 7aa6fec45f70cb83876ff22940f22078f0f1e95e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Rodr=C3=ADguez?= Date: Fri, 12 Jun 2020 18:29:34 +0200 Subject: [PATCH] [rubygems/rubygems] Remove unused method https://github.com/rubygems/rubygems/commit/b1b39b8c06 --- lib/bundler/installer.rb | 6 ------ 1 file changed, 6 deletions(-) diff --git a/lib/bundler/installer.rb b/lib/bundler/installer.rb index a8b42840ac..874aac75b6 100644 --- a/lib/bundler/installer.rb +++ b/lib/bundler/installer.rb @@ -202,8 +202,6 @@ module Bundler return jobs end - return 1 unless can_install_in_parallel? - Bundler.settings[:jobs] || processor_count end @@ -263,10 +261,6 @@ module Bundler end end - def can_install_in_parallel? - true - end - def install_in_parallel(size, standalone, force = false) spec_installations = ParallelInstaller.call(self, @definition.specs, size, standalone, force) spec_installations.each do |installation|