Skip to content

Commit

Permalink
MAT-7060 remove unwanted space
Browse files Browse the repository at this point in the history
  • Loading branch information
adongare committed Aug 1, 2024
1 parent 6fe96a6 commit 84cddca
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 84cddca

Please sign in to comment.