From fcaeacd0da895b0a402fd8e9a81a646e7456f35e Mon Sep 17 00:00:00 2001 From: Sam Ford <1584702+samford@users.noreply.github.com> Date: Thu, 25 Jul 2024 12:41:34 -0400 Subject: [PATCH] livecheck: remove unused URI require `URI#parse` was originally added in #9074 and replaced with `Addressable::URI#parse` in #13306 but `require "uri"` wasn't removed at the time. livecheck doesn't use `URI` now, so this removes the unused `require`. --- Library/Homebrew/livecheck/livecheck.rb | 1 - 1 file changed, 1 deletion(-) diff --git a/Library/Homebrew/livecheck/livecheck.rb b/Library/Homebrew/livecheck/livecheck.rb index eca212bea5..2775b319ed 100644 --- a/Library/Homebrew/livecheck/livecheck.rb +++ b/Library/Homebrew/livecheck/livecheck.rb @@ -7,7 +7,6 @@ require "livecheck/livecheck_version" require "livecheck/skip_conditions" require "livecheck/strategy" require "addressable" -require "uri" module Homebrew # The {Livecheck} module consists of methods used by the `brew livecheck`