From 270cbd5aaeb504a043d8ee4af471fe053386c91c Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Fri, 11 Oct 2024 03:12:14 +0100 Subject: [PATCH] split_shell: remove unused argument --- worldeditadditions_core/utils/strings/split_shell.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worldeditadditions_core/utils/strings/split_shell.lua b/worldeditadditions_core/utils/strings/split_shell.lua index ac1d858..a41bc5a 100644 --- a/worldeditadditions_core/utils/strings/split_shell.lua +++ b/worldeditadditions_core/utils/strings/split_shell.lua @@ -15,7 +15,7 @@ local function is_whitespace(char) return char:match("%s") end -local function split_shell(text, autotrim) +local function split_shell(text) local text_length = #text local scan_pos = 1 local result = { }