From aab02bf6f9c30060f6eb220d5e4cdd3879c7867c Mon Sep 17 00:00:00 2001 From: Dan Balasescu Date: Wed, 17 Apr 2024 12:08:38 +0900 Subject: [PATCH] Fix inspections --- SDL3-CS/SDL3.cs | 2 -- SDL3-CS/SDL3/SDL_log.cs | 6 ++---- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/SDL3-CS/SDL3.cs b/SDL3-CS/SDL3.cs index 6aed6af..5b46e55 100644 --- a/SDL3-CS/SDL3.cs +++ b/SDL3-CS/SDL3.cs @@ -2,9 +2,7 @@ // See the LICENCE file in the repository root for full licence text. using System; -using System.Diagnostics; using System.Runtime.InteropServices; -using System.Text; namespace SDL { diff --git a/SDL3-CS/SDL3/SDL_log.cs b/SDL3-CS/SDL3/SDL_log.cs index dd19dc4..70ab926 100644 --- a/SDL3-CS/SDL3/SDL_log.cs +++ b/SDL3-CS/SDL3/SDL_log.cs @@ -1,13 +1,11 @@ // Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. -using System.Runtime.CompilerServices; - namespace SDL { - public static partial class SDL3 + public static partial class SDL3 { - public static void SDL_LogSetPriority(SDL_LogCategory category, SDL_LogPriority priority) => SDL_LogSetPriority((int)category, priority); + public static void SDL_LogSetPriority(SDL_LogCategory category, SDL_LogPriority priority) => SDL_LogSetPriority((int)category, priority); public static SDL_LogPriority SDL_LogGetPriority(SDL_LogCategory category) => SDL_LogGetPriority((int)category); } }