Skip to content

Commit

Permalink
MAT-7897: Cleaning up PR
Browse files Browse the repository at this point in the history
  • Loading branch information
gregory-akins committed Nov 27, 2024
1 parent 2c76b14 commit ce30d5c
Showing 1 changed file with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
import java.util.*;

import lombok.Getter;
import lombok.extern.slf4j.Slf4j;

import org.antlr.v4.runtime.CharStreams;
import org.antlr.v4.runtime.CommonTokenStream;
Expand Down Expand Up @@ -37,7 +36,6 @@
import gov.cms.madie.cql_elm_translator.utils.cql.parsing.model.CQLValueSet;
import gov.cms.madie.cql_elm_translator.utils.cql.parsing.model.DefinitionContent;

@Slf4j
@Getter
public class CQLTools {

Expand Down Expand Up @@ -147,9 +145,7 @@ public void generate() throws IOException {
preprocessor.visit(tree);
ParseTreeWalker walker = new ParseTreeWalker();
walker.walk(listener, tree);
Set<DefinitionContent> defConts = listener.getDefinitionContents();

definitionContents.addAll(defConts);
definitionContents.addAll(listener.getDefinitionContents());

allParameters.addAll(listener.getParameters()); // MAT-7450
callstack = graph.getAdjacencyList();
Expand Down

0 comments on commit ce30d5c

Please sign in to comment.