From 9b6890b46f91f2afab1d8d7b0474877c44464133 Mon Sep 17 00:00:00 2001 From: Oliver Booth Date: Tue, 18 Jun 2024 15:42:58 +0100 Subject: [PATCH] style: organise using directives --- VpSharp.Commands/CommandsExtension.cs | 2 -- VpSharp.IntegrationTests/src/Program.cs | 1 + VpSharp/src/Vector3d.cs | 2 -- 3 files changed, 1 insertion(+), 4 deletions(-) diff --git a/VpSharp.Commands/CommandsExtension.cs b/VpSharp.Commands/CommandsExtension.cs index 62d46e6..e854bd3 100644 --- a/VpSharp.Commands/CommandsExtension.cs +++ b/VpSharp.Commands/CommandsExtension.cs @@ -1,11 +1,9 @@ using System.Globalization; using System.Reflection; -using Microsoft.Extensions.DependencyInjection; using VpSharp.ClientExtensions; using VpSharp.Commands.Attributes; using VpSharp.Commands.Attributes.ExecutionChecks; using VpSharp.Entities; -using VpSharp.EventData; using VpSharp.Internal; namespace VpSharp.Commands; diff --git a/VpSharp.IntegrationTests/src/Program.cs b/VpSharp.IntegrationTests/src/Program.cs index 1c26974..a7a9d7b 100644 --- a/VpSharp.IntegrationTests/src/Program.cs +++ b/VpSharp.IntegrationTests/src/Program.cs @@ -1,6 +1,7 @@ using VpSharp; using VpSharp.Commands; using VpSharp.Entities; +using VpSharp.Extensions; using VpSharp.IntegrationTests.CommandModules; string? username = Environment.GetEnvironmentVariable("username"); diff --git a/VpSharp/src/Vector3d.cs b/VpSharp/src/Vector3d.cs index 703cca4..ed8bdf4 100644 --- a/VpSharp/src/Vector3d.cs +++ b/VpSharp/src/Vector3d.cs @@ -1,7 +1,5 @@ using System.Globalization; using System.Numerics; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; using System.Text; namespace VpSharp;