Skip to content

Commit

Permalink
fix: var names
Browse files Browse the repository at this point in the history
Signed-off-by: Afonso Fernandes <21228942+afonsonf@users.noreply.github.com>
  • Loading branch information
afonsonf authored and lemmy committed Aug 29, 2024
1 parent 32f2b5b commit 22c3497
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/parsers/sany.ts
Original file line number Diff line number Diff line change
Expand Up @@ -248,10 +248,10 @@ export class SanyStdoutParser extends ProcessOutputHandler<SanyData> {
}

private tryParseModulePath(line: string) {
const rxJarPath = /^(.*)(?: \(.*\))$/g;
const jarPathMatches = rxJarPath.exec(line);
const modPath = jarPathMatches ? jarPathMatches[1] : line;
this.rememberParsedModule(modPath);
const rxModulePath = /^(.*)(?: \(.*\))$/g;
const moldulePathMatches = rxModulePath.exec(line);
const modulePath = moldulePathMatches ? moldulePathMatches[1] : line;
this.rememberParsedModule(modulePath);
}

private appendErrMessage(line: string) {
Expand Down

0 comments on commit 22c3497

Please sign in to comment.