Skip to content

Commit

Permalink
Update src/main/java/org/mitre/synthea/export/rif/BB2RIFExporter.java
Browse files Browse the repository at this point in the history
Co-authored-by: sonatype-lift[bot] <37194012+sonatype-lift[bot]@users.noreply.github.com>
  • Loading branch information
jawalonoski and sonatype-lift[bot] committed Jul 17, 2023
1 parent b8e5eca commit 9f7c6cc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ private static RandomCollection<String> loadPPSCodes(String resourcePath) {
for (LinkedHashMap<String, String> row : csv) {
String code = row.get("code");
long count = Long.parseLong(row.get("count"));
codes.add(count, code);
codes.add((double) count, code);
}

Check warning on line 182 in src/main/java/org/mitre/synthea/export/rif/BB2RIFExporter.java

View check run for this annotation

Codecov / codecov/patch

src/main/java/org/mitre/synthea/export/rif/BB2RIFExporter.java#L179-L182

Added lines #L179 - L182 were not covered by tests
} catch (Exception e) {
if (Config.getAsBoolean("exporter.bfd.require_code_maps", true)) {
Expand Down

0 comments on commit 9f7c6cc

Please sign in to comment.