Skip to content

Commit

Permalink
tsconfig option strictPropertyInitialization on meta/utils
Browse files Browse the repository at this point in the history
  • Loading branch information
annekekleppe committed Jun 26, 2024
1 parent 815b2ab commit 8437d1c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export class ValidatorChecker extends Checker<ValidatorDef> {
constructor(language: FreMetaLanguage | undefined) {
super(language);
LOGGER.log("Created validator checker");
if ( this.language !== null || this.language !== undefined ) {
if ( this.language !== null && this.language !== undefined ) {
this.myExpressionChecker = new FreLangExpressionChecker(this.language);
}
}
Expand Down

0 comments on commit 8437d1c

Please sign in to comment.