From 3f5eb61fc7166674a5424d5f8e8c23a775c27614 Mon Sep 17 00:00:00 2001 From: vnugent Date: Mon, 14 Aug 2023 11:43:35 -0400 Subject: Compression api exposed and tests updated --- lib/Net.Http/src/Core/Response/ResponseWriter.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'lib/Net.Http') diff --git a/lib/Net.Http/src/Core/Response/ResponseWriter.cs b/lib/Net.Http/src/Core/Response/ResponseWriter.cs index 97b734a..b6b2488 100644 --- a/lib/Net.Http/src/Core/Response/ResponseWriter.cs +++ b/lib/Net.Http/src/Core/Response/ResponseWriter.cs @@ -24,7 +24,7 @@ /* * This file handles response entity processing. It handles in-memory response - * processing, as well as stream response processing. It handles contraints + * processing, as well as stream response processing. It handles constraints * such as content-range limits. I tried to eliminate or reduce the amount of * memory copying required to process the response entity. */ @@ -35,7 +35,6 @@ using System.Threading; using System.Threading.Tasks; using System.Runtime.CompilerServices; -using VNLib.Utils.IO; using VNLib.Utils.Memory; using VNLib.Net.Http.Core.Response; using VNLib.Net.Http.Core.Compression; -- cgit