diff options
| author | David RodrÃguez <deivid.rodriguez@riseup.net> | 2023-10-09 21:07:15 +0200 |
|---|---|---|
| committer | Hiroshi SHIBATA <hsbt@ruby-lang.org> | 2024-02-08 14:43:56 +0900 |
| commit | debc5aaee57a25745259fd02a54701e6c184fa7c (patch) | |
| tree | 039fc6851ff4db8f6c1ce70c44a14ff4c6355ded | |
| parent | ce2618c628e017f6d83576d95a294a6247e30b19 (diff) | |
[rubygems/rubygems] Remove unused parameter
https://github.com/rubygems/rubygems/commit/085eda7147
| -rw-r--r-- | lib/bundler/installer.rb | 4 |
1 files 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 |
