From d7a934e25c0611ad1e26cddde9bcb8243c89e063 Mon Sep 17 00:00:00 2001 From: GHXX Date: Sat, 20 Jul 2024 08:02:06 +0200 Subject: [PATCH] cleanup --- SimpleHttpServer/HttpServer.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SimpleHttpServer/HttpServer.cs b/SimpleHttpServer/HttpServer.cs index 4b67aa3..3891518 100644 --- a/SimpleHttpServer/HttpServer.cs +++ b/SimpleHttpServer/HttpServer.cs @@ -157,7 +157,7 @@ public sealed class HttpServer { staticServePaths.Add(npath, absPath); } - private readonly Dictionary staticServePaths = new Dictionary(); + private readonly Dictionary staticServePaths = new(); private readonly Dictionary stringToTypeParameterConverters = new();