From c8e1f9bbe1abc4d56cec4abfee66a6ac7c6081d4 Mon Sep 17 00:00:00 2001 From: Andra Constantin Date: Tue, 13 Aug 2024 12:30:21 -0400 Subject: [PATCH] remove warning suppression --- Backend/Controllers/WordController.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/Backend/Controllers/WordController.cs b/Backend/Controllers/WordController.cs index 94d03767da..b1f8f847ad 100644 --- a/Backend/Controllers/WordController.cs +++ b/Backend/Controllers/WordController.cs @@ -11,9 +11,7 @@ namespace BackendFramework.Controllers { [Authorize] -#pragma warning disable CA1825 // Avoid zero-length array allocations [Produces("application/json")] -#pragma warning restore CA1825 // Avoid zero-length array allocations [Route("v1/projects/{projectId}/words")] public class WordController : Controller {