1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

[rubygems/rubygems] Remove redundant substraction

https://github.com/rubygems/rubygems/commit/365b46329b
This commit is contained in:
David Rodríguez 2020-05-28 23:02:28 +02:00 committed by Hiroshi SHIBATA
parent 97d05c9db3
commit 9422162f71
Notes: git 2020-06-05 07:33:58 +09:00

View file

@ -164,7 +164,7 @@ module Bundler
# need to nil them out first to get around validation for backwards compatibility # need to nil them out first to get around validation for backwards compatibility
Bundler.settings.set_command_option :without, nil Bundler.settings.set_command_option :without, nil
Bundler.settings.set_command_option :with, nil Bundler.settings.set_command_option :with, nil
Bundler.settings.set_command_option :without, without - with Bundler.settings.set_command_option :without, without
Bundler.settings.set_command_option :with, with Bundler.settings.set_command_option :with, with
end end