From 814e3438ab07c2b41a9eb198fc0bae9822049d8d Mon Sep 17 00:00:00 2001 From: Raphael Anyanwu Date: Wed, 3 Sep 2025 20:21:51 +0100 Subject: [PATCH] remove unused using --- src/DemoAPI/Controllers/WeatherForecastController.cs | 4 ---- src/Throttlr.Api.RateLimit/Core/RateLimitPolicy.cs | 2 -- 2 files changed, 6 deletions(-) diff --git a/src/DemoAPI/Controllers/WeatherForecastController.cs b/src/DemoAPI/Controllers/WeatherForecastController.cs index 8e91036..41beadb 100644 --- a/src/DemoAPI/Controllers/WeatherForecastController.cs +++ b/src/DemoAPI/Controllers/WeatherForecastController.cs @@ -6,10 +6,6 @@ namespace DemoAPI.Controllers [Route("[controller]")] public class WeatherForecastController : ControllerBase { - public WeatherForecastController() - { - } - [HttpGet("hello")] public IActionResult GetHello() { diff --git a/src/Throttlr.Api.RateLimit/Core/RateLimitPolicy.cs b/src/Throttlr.Api.RateLimit/Core/RateLimitPolicy.cs index 74ca7e5..1f76eb2 100644 --- a/src/Throttlr.Api.RateLimit/Core/RateLimitPolicy.cs +++ b/src/Throttlr.Api.RateLimit/Core/RateLimitPolicy.cs @@ -1,6 +1,4 @@ using System; -using System.Collections.Generic; -using System.Text; namespace RateLimit.Throttlr.Core {