Skip to content

Commit

Permalink
@W-17397505@ Fixing build error
Browse files Browse the repository at this point in the history
  • Loading branch information
jfeingold35 committed Dec 13, 2024
1 parent c6649f6 commit a9cfd7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/code-analyzer-core/src/results.ts
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ export class UnexpectedErrorEngineRunResults implements EngineRunResults {
export class RunResultsImpl implements RunResults {
private readonly clock: Clock;
private readonly runDir: string;
private coreVersion: string;
private coreVersion: string = 'X.Y.Z'; // This value will be overwritten before it ever has a chance to matter.
private readonly engineRunResultsMap: Map<string, EngineRunResults> = new Map();

constructor(clock: Clock = new RealClock(), runDir: string = process.cwd() + path.sep) {
Expand Down

0 comments on commit a9cfd7d

Please sign in to comment.