From d2acc71d32c0731ba3d85d65b03e1484b2d66b69 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Rodr=C3=ADguez?= Date: Fri, 22 Nov 2024 11:15:32 +0100 Subject: [PATCH] [rubygems/rubygems] Remove now dead code https://github.com/rubygems/rubygems/commit/31fadaf2d2 --- lib/rubygems/commands/update_command.rb | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/lib/rubygems/commands/update_command.rb b/lib/rubygems/commands/update_command.rb index 8e80d46856..a4227b8ca1 100644 --- a/lib/rubygems/commands/update_command.rb +++ b/lib/rubygems/commands/update_command.rb @@ -323,10 +323,6 @@ command to remove old versions. # def oldest_supported_version @oldest_supported_version ||= - if Gem.ruby_version > Gem::Version.new("3.1.a") - Gem::Version.new("3.3.3") - else - Gem::Version.new("3.2.3") - end + Gem::Version.new("3.3.3") end end