Skip to content

Commit

Permalink
[Lara-JS] Cleans up code
Browse files Browse the repository at this point in the history
  • Loading branch information
joaobispo committed Nov 13, 2024
1 parent 922ae10 commit f50e367
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions Lara-JS/src-code/WeaverLauncher.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ import {
} from "./ChildProcessHandling.js";
import WeaverConfiguration from "./WeaverConfiguration.js";
import WeaverMessageFromLauncher from "./WeaverMessageFromLauncher.js";
import { writeFileSync } from "fs";

import { Weaver } from "./Weaver.js";

Expand All @@ -31,21 +30,6 @@ export default class WeaverLauncher {
this.debug = Debug(`WeaverLauncher:${this.config.weaverPrettyName}:main`);
}

/*
executeSync(customArgs: string[] | undefined = undefined): void {
const cliArgs = customArgs ?? hideBin(process.argv);
if (cliArgs.length > 0 && cliArgs[0] === "classic") {
const weaverArgs = cliArgs.slice(1);
console.log(
`Executing ${this.config.weaverPrettyName} script in classic CLI mode...`
);
}
await execute(customArgs);
}
*/

async execute(customArgs: string[] | undefined = undefined): Promise<void> {
const cliArgs = customArgs ?? hideBin(process.argv);

Expand Down

0 comments on commit f50e367

Please sign in to comment.