From 8f0fdef856158b14caea9eb3dc59024989c7817e Mon Sep 17 00:00:00 2001 From: Kenneth Myhra Date: Thu, 10 Nov 2022 20:15:40 +0100 Subject: [PATCH] LibWeb: Remove unused type XMLHttpRequestBodyInit --- Userland/Libraries/LibWeb/Fetch/BodyInit.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/Userland/Libraries/LibWeb/Fetch/BodyInit.h b/Userland/Libraries/LibWeb/Fetch/BodyInit.h index 6b009f88a1..7c2a3ef431 100644 --- a/Userland/Libraries/LibWeb/Fetch/BodyInit.h +++ b/Userland/Libraries/LibWeb/Fetch/BodyInit.h @@ -13,9 +13,6 @@ namespace Web::Fetch { -// https://fetch.spec.whatwg.org/#typedefdef-xmlhttprequestbodyinit -using XMLHttpRequestBodyInit = Variant, JS::Handle, JS::Handle, String>; - // https://fetch.spec.whatwg.org/#bodyinit using BodyInit = Variant, JS::Handle, JS::Handle, JS::Handle, String>;