Skip to content

Commit

Permalink
Merge branch 'develop' into MAT-6463_UpdateCqframework
Browse files Browse the repository at this point in the history
  • Loading branch information
gregory-akins committed Aug 28, 2024
2 parents c0178e2 + fee1bbe commit 86d1074
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 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
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -247,4 +247,4 @@
</plugin>
</plugins>
</build>
</project>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -357,8 +357,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 86d1074

Please sign in to comment.