[rubygems/rubygems] Don't memoize sorted_spec_names

It's just for debugging and a simple method, so no need.

https://github.com/rubygems/rubygems/commit/3230425a9a
This commit is contained in:
David Rodríguez 2024-07-04 13:18:12 +02:00 committed by git
parent 086cde1651
commit 00acc70348

View File

@ -44,7 +44,7 @@ module Bundler
protected
def sorted_spec_names
@sorted_spec_names ||= @specs.map(&:full_name).sort
@specs.map(&:full_name).sort
end
private