Skip to content

Commit

Permalink
Fix remove qualifier translation for object mapper in app config
Browse files Browse the repository at this point in the history
  • Loading branch information
juliangruendner committed Oct 18, 2024
1 parent bbd67b7 commit 145a980
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ public DataStore dataStore(@Qualifier("fhirClient") WebClient client, FhirContex
}

@Bean
public DseMappingTreeBase dseMappingTreeBase(@Qualifier("translation") ObjectMapper jsonUtil) throws IOException {
public DseMappingTreeBase dseMappingTreeBase(ObjectMapper jsonUtil) throws IOException {
return new DseMappingTreeBase(Arrays.stream(jsonUtil.readValue(new File(dseMappingTreeFile), DseTreeRoot[].class)).toList());
}

Expand Down

0 comments on commit 145a980

Please sign in to comment.