Skip to content

Commit

Permalink
Merge pull request #25 from HHS/bugfix/texttablereader
Browse files Browse the repository at this point in the history
TextTableReader Bugfix
  • Loading branch information
bischoffz committed May 14, 2024
2 parents 37b989e + 37efe06 commit ce9eed6
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 @@ -7,7 +7,7 @@
<!-- Artifact -->
<groupId>gov.hhs.aspr.ms</groupId>
<artifactId>util</artifactId>
<version>4.1.2</version>
<version>4.1.3</version>
<packaging>jar</packaging>

<name>Modeling Utils</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ public static void read(String delimeter, String expectedHeader, Path filePath,
for (int i = 0; i < lineValues.length; i++) {
int index = headerIndexLookup[i];
if (index != -1) {
retValues[i] = lineValues[index];
retValues[index] = lineValues[i];
}
}
}
Expand Down

0 comments on commit ce9eed6

Please sign in to comment.