Code cleanup

This commit is contained in:
Stone_Red
2026-06-08 21:30:40 +02:00
parent 124b5368b1
commit 145055b77e
25 changed files with 232 additions and 192 deletions
+2 -4
View File
@@ -1,6 +1,4 @@
using System;
namespace RemSox.UI.GUI.CLI;
namespace RemSox.UI.CLI;
public static class CommandManager
{
@@ -48,7 +46,7 @@ public static class CommandManager
if (trimmedInput.Length > commandName.Length)
{
arguments = trimmedInput.Substring(commandName.Length).TrimStart();
arguments = trimmedInput[commandName.Length..].TrimStart();
}
entry.Value.Execute(arguments, printLine);