From f80e0fdedb142401bbb0f95a6248e88c810bdaf5 Mon Sep 17 00:00:00 2001 From: NintenHero <37460517+MichaelHinrichs@users.noreply.github.com> Date: Sun, 11 Aug 2024 17:00:59 -0500 Subject: [PATCH] Remove braces from one-line "for" loop --- Program.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/Program.cs b/Program.cs index 0f1fff4..52d81cf 100644 --- a/Program.cs +++ b/Program.cs @@ -20,9 +20,7 @@ namespace Warspear_Online_Extractor System.Collections.Generic.List subfiles = new(); for (int i = 0; i < count; i++) - { subfiles.Add(new()); - } string path = Path.GetDirectoryName(args[0]) + "//" + Path.GetFileNameWithoutExtension(args[0]) + "//"; foreach (Subfile file in subfiles)