Skip to content

Commit

Permalink
MAT-7906: reset library accessor at context
Browse files Browse the repository at this point in the history
  • Loading branch information
chubert-sb committed Nov 12, 2024
1 parent cc60c6c commit 2e878f2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion 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>2.0.0-SNAPSHOT</version>
<version>2.0.1-SNAPSHOT</version>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>17</java.version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -725,4 +725,9 @@ private void parseChildLibraries(IncludeDef def) throws IOException {
drcs.putAll(listener.getDrcs());
definitionContents.addAll(listener.getDefinitionContents());
}

@Override
public void enterContextDefinition(cqlParser.ContextDefinitionContext ctx) {
libraryAccessor = null;
}
}

0 comments on commit 2e878f2

Please sign in to comment.