diff options
author | David RodrÃguez <[email protected]> | 2025-01-24 16:08:49 +0100 |
---|---|---|
committer | Hiroshi SHIBATA <[email protected]> | 2025-01-28 15:31:53 +0900 |
commit | f6e7f5337b882611c44628467a97358156cff62c (patch) | |
tree | 70c9297026cefd89fb93625d2372b6b654f0452c /lib | |
parent | d8394461fd11df51cb743b4bb4d156d6cf6b0131 (diff) |
[rubygems/rubygems] Remove unnecessary `@autorequire` initialization
It's initialized again later on.
https://github.com/rubygems/rubygems/commit/c3ddc81659
Diffstat (limited to 'lib')
-rw-r--r-- | lib/bundler/dependency.rb | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/bundler/dependency.rb b/lib/bundler/dependency.rb index 09a145b8c8..604dec37ad 100644 --- a/lib/bundler/dependency.rb +++ b/lib/bundler/dependency.rb @@ -31,7 +31,6 @@ module Bundler type = options["type"] || :runtime super(name, version, type) - @autorequire = nil @groups = Array(options["group"] || :default).map(&:to_sym) @source = options["source"] @path = options["path"] |