Skip to content

Commit

Permalink
MAT-5567 address review feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
adongare committed May 24, 2023
1 parent f30e8b3 commit 41cd822
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/CqlAntlrListener.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ export default class CqlAntlrListener implements cqlListener {
}

enterRetrieve(ctx: RetrieveContext): void {
if (ctx.terminology() == undefined) {
if (ctx.terminology() === undefined) {
return;
}
const cqlRetrieve: CqlRetrieve | undefined = new CqlRetrieveCreator(ctx).buildDao();
Expand Down

0 comments on commit 41cd822

Please sign in to comment.