Skip to content

Commit 48fd41c

Browse files
committed
Bump parent to 7.7.18-SNAPSHOT fix CR breakage
1 parent b3761a4 commit 48fd41c

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<parent>
1515
<groupId>ca.uhn.hapi.fhir</groupId>
1616
<artifactId>hapi-fhir</artifactId>
17-
<version>7.7.16-SNAPSHOT</version>
17+
<version>7.7.18-SNAPSHOT</version>
1818
</parent>
1919

2020
<artifactId>hapi-fhir-jpaserver-starter</artifactId>

src/main/java/ca/uhn/fhir/jpa/starter/cdshooks/ModuleConfigurationPrefetchSvc.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
import ca.uhn.fhir.context.FhirContext;
44
import ca.uhn.fhir.i18n.Msg;
5+
import ca.uhn.fhir.interceptor.api.IInterceptorBroadcaster;
56
import ca.uhn.fhir.rest.client.api.IClientInterceptor;
67
import ca.uhn.fhir.rest.client.api.IGenericClient;
78
import ca.uhn.fhir.rest.client.interceptor.BearerTokenAuthInterceptor;
@@ -53,8 +54,9 @@ public class ModuleConfigurationPrefetchSvc extends CdsPrefetchSvc {
5354
public ModuleConfigurationPrefetchSvc(CdsResolutionStrategySvc theCdsResolutionStrategySvc,
5455
CdsPrefetchDaoSvc theResourcePrefetchDao,
5556
CdsPrefetchFhirClientSvc theResourcePrefetchFhirClient,
56-
ICdsHooksDaoAuthorizationSvc theCdsHooksDaoAuthorizationSvc) {
57-
super(theCdsResolutionStrategySvc, theResourcePrefetchDao, theResourcePrefetchFhirClient, theCdsHooksDaoAuthorizationSvc);
57+
ICdsHooksDaoAuthorizationSvc theCdsHooksDaoAuthorizationSvc,
58+
IInterceptorBroadcaster theInterceptorBroadcaster) {
59+
super(theCdsResolutionStrategySvc, theResourcePrefetchDao, theResourcePrefetchFhirClient, theCdsHooksDaoAuthorizationSvc, theInterceptorBroadcaster);
5860
myResourcePrefetchFhirClient = theResourcePrefetchFhirClient;
5961
fhirContext = theResourcePrefetchDao.getFhirContext();
6062
}

0 commit comments

Comments
 (0)