diff --git a/src/libraries/System.Net.Http/src/System/Net/Http/SocketsHttpHandler/Http3RequestStream.cs b/src/libraries/System.Net.Http/src/System/Net/Http/SocketsHttpHandler/Http3RequestStream.cs index aa5f7541ba841b..2f9a2b5ac17dc0 100644 --- a/src/libraries/System.Net.Http/src/System/Net/Http/SocketsHttpHandler/Http3RequestStream.cs +++ b/src/libraries/System.Net.Http/src/System/Net/Http/SocketsHttpHandler/Http3RequestStream.cs @@ -127,13 +127,6 @@ public async Task SendAsync(CancellationToken cancellationT try { - // Works around linker issue where it tries to eliminate QuicStreamAbortedException - // https://github.com/dotnet/runtime/issues/57010 - #if TARGET_MOBILE - if (string.Empty.Length > 0) - throw new QuicStreamAbortedException("", 0); - #endif - BufferHeaders(_request); // If using Expect 100 Continue, setup a TCS to wait to send content until we get a response.