Skip to content

Commit

Permalink
adding missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
P1llus committed Sep 4, 2023
1 parent f89356b commit 1a4caca
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ processors:
commandLine = commandLine.trim();
if (commandLine != "") {
def args = new ArrayList(Arrays.asList(/ /.split(commandLine)))
def args = new ArrayList(Arrays.asList(/ /.split(commandLine)));
args.removeIf(arg -> arg == "");
ctx['process'] = new HashMap();
Expand Down

0 comments on commit 1a4caca

Please sign in to comment.