From b3b1b0eee0662cca2e35578e46f4eb586d9ae8e0 Mon Sep 17 00:00:00 2001 From: Richard Van Tassel Date: Sun, 23 Feb 2025 00:47:31 -0500 Subject: [PATCH] linting --- OpenDreamRuntime/DreamManager.cs | 1 - OpenDreamRuntime/Procs/DMProc.cs | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/OpenDreamRuntime/DreamManager.cs b/OpenDreamRuntime/DreamManager.cs index ec88c91c65..4fe239df8c 100644 --- a/OpenDreamRuntime/DreamManager.cs +++ b/OpenDreamRuntime/DreamManager.cs @@ -3,7 +3,6 @@ using System.Linq; using System.Text.Json; using System.Threading; -using OpenDreamShared.Common.Bytecode; using OpenDreamShared.Common.Json; using OpenDreamNoClient.Bytecode; using OpenDreamRuntime.Map; diff --git a/OpenDreamRuntime/Procs/DMProc.cs b/OpenDreamRuntime/Procs/DMProc.cs index 77b2f12cf5..d394954a67 100644 --- a/OpenDreamRuntime/Procs/DMProc.cs +++ b/OpenDreamRuntime/Procs/DMProc.cs @@ -140,7 +140,7 @@ private bool CheckIfNullProc() { return null; } else { var argumentTypes = new List(json.Arguments.Count); - argumentTypes.AddRange(json.Arguments.Select(a => (DMValueType)a.Type)); + argumentTypes.AddRange(json.Arguments.Select(a => a.Type)); return argumentTypes; } }