Remove unintended dbg! from components/net/fetch/methods.rs (#35401)

It was accidentally introduced in https://github.com/servo/servo/pull/34794

Signed-off-by: Samson <16504129+sagudev@users.noreply.github.com>
This commit is contained in:
Samson 2025-02-10 18:00:53 +01:00 committed by GitHub
parent f51a5661f8
commit 90130315a7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -956,7 +956,6 @@ fn does_settings_prohobit_mixed_security_contexts(url: &ServoUrl) -> bool {
/// <https://w3c.github.io/webappsec-mixed-content/#upgrade-algorithm>
fn should_upgrade_mixed_content_request(request: &Request) -> bool {
let url = request.url();
dbg!("Shubham {}", url.scheme());
// Step 1.1 : requests URL is a potentially trustworthy URL.
if url.is_potentially_trustworthy() {
return false;