Skip to content

Commit

Permalink
Merge pull request #29 from MeasureAuthoringTool/MAT-7060
Browse files Browse the repository at this point in the history
MAT-7060 remove unwanted space
  • Loading branch information
adongare authored Aug 5, 2024
2 parents 6fe96a6 + 84cddca commit 8e16afb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</parent>
<groupId>gov.cms.madie</groupId>
<artifactId>madie-rest-commons</artifactId>
<version>0.0.5-SNAPSHOT</version>
<version>0.0.6-SNAPSHOT</version>
<packaging>jar</packaging>

<name>Madie Rest Commons</name>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/gov/cms/mat/cql/parsers/IncludeParser.java
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ private String findIncludeName(String line) {
}

private String findIncludeVersion(String line) {
return StringUtils.substringBetween(line, " version '", "' ");
return StringUtils.substringBetween(line, " version '", "'");
}

private String getIncludeUsing(String line) {
Expand Down

0 comments on commit 8e16afb

Please sign in to comment.