From f336df7b761196647be9338db61593a0255a4367 Mon Sep 17 00:00:00 2001 From: NintenHero <37460517+MichaelHinrichs@users.noreply.github.com> Date: Sun, 11 Aug 2024 16:50:08 -0500 Subject: [PATCH] Remove braces from single-line "for" loop --- Program.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/Program.cs b/Program.cs index fc1ae17..4eb79de 100644 --- a/Program.cs +++ b/Program.cs @@ -11,9 +11,7 @@ List subfiles = new(); for (int i = 0; i < fileCount; i++) - { subfiles.Add(new()); - } string path = Path.GetDirectoryName(args[0]) + "\\" + Path.GetFileNameWithoutExtension(args[0]); Directory.CreateDirectory(path);