From c003557befbe972c6ca39824b4deb57238d4b36d Mon Sep 17 00:00:00 2001 From: Brian Fiete Date: Tue, 31 Dec 2024 14:37:03 -0800 Subject: [PATCH] Compliance with string changes --- BeefBuild/src/Program.bf | 2 +- IDE/src/Debugger/DebugManager.bf | 4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/BeefBuild/src/Program.bf b/BeefBuild/src/Program.bf index 610dac9d..5164047f 100644 --- a/BeefBuild/src/Program.bf +++ b/BeefBuild/src/Program.bf @@ -31,7 +31,7 @@ namespace BeefBuild //TestZip2(); String commandLine = scope String(); - commandLine.Join(" ", params args); + commandLine.Join(" ", args); BuildApp mApp = new BuildApp(); mApp.ParseCommandLine(commandLine); diff --git a/IDE/src/Debugger/DebugManager.bf b/IDE/src/Debugger/DebugManager.bf index 32d2ba4f..f6765d61 100644 --- a/IDE/src/Debugger/DebugManager.bf +++ b/IDE/src/Debugger/DebugManager.bf @@ -544,10 +544,8 @@ namespace IDE.Debugger public void HotLoad(String[] objectFileNames, int hotIdx) { - - String filenamesStr = scope String(); - filenamesStr.Join("\n", params objectFileNames); + filenamesStr.Join("\n", objectFileNames); Debugger_HotLoad(filenamesStr, (int32)hotIdx); // The hot load will bind breakpoints to any new methods, but the old versions