From debc5aaee57a25745259fd02a54701e6c184fa7c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Rodr=C3=ADguez?= Date: Mon, 9 Oct 2023 21:07:15 +0200 Subject: [PATCH] [rubygems/rubygems] Remove unused parameter https://github.com/rubygems/rubygems/commit/085eda7147 --- lib/bundler/installer.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/bundler/installer.rb b/lib/bundler/installer.rb index e837f732cf..5245da2e0e 100644 --- a/lib/bundler/installer.rb +++ b/lib/bundler/installer.rb @@ -260,8 +260,8 @@ module Bundler true end - def lock(opts = {}) - @definition.lock(Bundler.default_lockfile, opts[:preserve_unknown_sections]) + def lock + @definition.lock(Bundler.default_lockfile) end end end