From a25b93ae9f5f8dff6853ee9c8ea9f97aedefdc13 Mon Sep 17 00:00:00 2001 From: CyberL1 Date: Thu, 13 Jun 2024 10:21:47 +0200 Subject: [PATCH] chore: remove unused `using` --- MyMcRealms/Controllers/TrialController.cs | 4 ++-- MyMcRealms/Controllers/WorldsController.cs | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/MyMcRealms/Controllers/TrialController.cs b/MyMcRealms/Controllers/TrialController.cs index 972f4f9..e2d0438 100644 --- a/MyMcRealms/Controllers/TrialController.cs +++ b/MyMcRealms/Controllers/TrialController.cs @@ -8,8 +8,8 @@ namespace MyMcRealms.Controllers [RequireMinecraftCookie] public class TrialController : ControllerBase { - [HttpGet(Name = "GetTrial")] - public bool Get() { + [HttpGet] + public bool GetTrial() { return false; } } diff --git a/MyMcRealms/Controllers/WorldsController.cs b/MyMcRealms/Controllers/WorldsController.cs index c094a0e..99f450d 100644 --- a/MyMcRealms/Controllers/WorldsController.cs +++ b/MyMcRealms/Controllers/WorldsController.cs @@ -4,7 +4,6 @@ using MyMcRealms.MyMcAPI.Responses; using MyMcRealms.Responses; using Newtonsoft.Json; using Semver; -using System.Text.Json; namespace MyMcRealms.Controllers {