summaryrefslogtreecommitdiff
path: root/lib/bundler/installer.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/bundler/installer.rb')
-rw-r--r--lib/bundler/installer.rb6
1 files changed, 0 insertions, 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|