Skip to content

Commit

Permalink
MAT-7598 unused parameters are not added to allParameters
Browse files Browse the repository at this point in the history
  • Loading branch information
RohitKandimalla committed Aug 28, 2024
1 parent d745436 commit 431be09
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,6 @@
.project
*.bak
.classpath
.settings/
.settings/

.idea
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>gov.cms.madie</groupId>
<artifactId>madie-translator-commons</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>0.0.2-SNAPSHOT</version>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>17</java.version>
Expand Down Expand Up @@ -247,4 +247,4 @@
</plugin>
</plugins>
</build>
</project>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -356,8 +356,9 @@ public void enterParameterDefinition(@NotNull cqlParser.ParameterDefinitionConte
String identifier = parseString(ctx.identifier().getText());
this.currentContext = libraryIdentifier + identifier;
graph.addNode(currentContext);
libraryAccessor = null;
if (shouldResolve(identifier)) { // MAT-7450
resolve(identifier, getCurrentLibraryContext());
resolve(identifier, this.library);
}
}

Expand Down

0 comments on commit 431be09

Please sign in to comment.