From 69fedb8ccab74706f5842e26dc963056982898cd Mon Sep 17 00:00:00 2001 From: LPeter1997 Date: Mon, 23 Sep 2024 19:20:40 +0200 Subject: [PATCH] Cleanup --- src/Draco.Coverage/InstrumentedAssembly.cs | 2 -- src/Draco.Coverage/Platform/PlatformUtils.cs | 2 +- src/Draco.Fuzzing/IInputMutator.cs | 1 - 3 files changed, 1 insertion(+), 4 deletions(-) diff --git a/src/Draco.Coverage/InstrumentedAssembly.cs b/src/Draco.Coverage/InstrumentedAssembly.cs index 6d9b76315..cc6aba35d 100644 --- a/src/Draco.Coverage/InstrumentedAssembly.cs +++ b/src/Draco.Coverage/InstrumentedAssembly.cs @@ -2,8 +2,6 @@ using System.Collections.Immutable; using System.IO; using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; namespace Draco.Coverage; diff --git a/src/Draco.Coverage/Platform/PlatformUtils.cs b/src/Draco.Coverage/Platform/PlatformUtils.cs index 5a09450ce..0db940ca9 100644 --- a/src/Draco.Coverage/Platform/PlatformUtils.cs +++ b/src/Draco.Coverage/Platform/PlatformUtils.cs @@ -1,5 +1,5 @@ -using System.Runtime.InteropServices; using System; +using System.Runtime.InteropServices; namespace Draco.Coverage.Platform; diff --git a/src/Draco.Fuzzing/IInputMutator.cs b/src/Draco.Fuzzing/IInputMutator.cs index 1c3359cd2..5cb78dfd8 100644 --- a/src/Draco.Fuzzing/IInputMutator.cs +++ b/src/Draco.Fuzzing/IInputMutator.cs @@ -1,6 +1,5 @@ using System; using System.Collections.Generic; -using System.Linq; namespace Draco.Fuzzing;