From 79c43b48be04963ae32835e3e5f08720538bcaf8 Mon Sep 17 00:00:00 2001 From: "dotasek.dev" Date: Tue, 9 Apr 2024 11:29:48 -0400 Subject: [PATCH] Bump HAPI version, fix deleted method in Cr properties --- pom.xml | 2 +- src/main/java/ca/uhn/fhir/jpa/starter/cr/StarterCrR4Config.java | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index aaa926c..bd771ba 100644 --- a/pom.xml +++ b/pom.xml @@ -14,7 +14,7 @@ ca.uhn.hapi.fhir hapi-fhir - 7.1.6-SNAPSHOT + 7.1.8-SNAPSHOT hapi-fhir-jpaserver-starter diff --git a/src/main/java/ca/uhn/fhir/jpa/starter/cr/StarterCrR4Config.java b/src/main/java/ca/uhn/fhir/jpa/starter/cr/StarterCrR4Config.java index fd9af65..4c0c5be 100644 --- a/src/main/java/ca/uhn/fhir/jpa/starter/cr/StarterCrR4Config.java +++ b/src/main/java/ca/uhn/fhir/jpa/starter/cr/StarterCrR4Config.java @@ -68,7 +68,6 @@ public class StarterCrR4Config { @Bean CareGapsProperties careGapsProperties(CrProperties theCrProperties) { var careGapsProperties = new CareGapsProperties(); - careGapsProperties.setThreadedCareGapsEnabled(false); careGapsProperties.setCareGapsReporter(theCrProperties.getCareGapsReporter()); careGapsProperties.setCareGapsCompositionSectionAuthor(theCrProperties.getCareGapsSectionAuthor()); return careGapsProperties;