From a17814fc90bd7dfffe893c1f3866225167b16b68 Mon Sep 17 00:00:00 2001 From: Yury Shkoda Date: Tue, 2 May 2023 15:53:13 +0300 Subject: [PATCH] chore(stp): removed redundant argument --- api/src/controllers/stp.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/src/controllers/stp.ts b/api/src/controllers/stp.ts index f839677..a41b31d 100644 --- a/api/src/controllers/stp.ts +++ b/api/src/controllers/stp.ts @@ -38,7 +38,7 @@ export class STPController { ): Promise { const vars = request.query as ExecutionVars - return execute(request, _program, vars, undefined, true) + return execute(request, _program, vars, undefined) } /** @@ -66,7 +66,7 @@ export class STPController { : null const otherArgs = { filesNamesMap: filesNamesMap } - return execute(request, program!, vars, otherArgs, true) + return execute(request, program!, vars, otherArgs) } }