You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by pp...@apache.org on 2021/04/09 08:15:57 UTC

[camel-quarkus] branch main updated: Fix #2441 to remove the unused beanContainer in FhirR5Processor

This is an automated email from the ASF dual-hosted git repository.

ppalaga pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git


The following commit(s) were added to refs/heads/main by this push:
     new c8b25eb  Fix #2441 to remove the unused beanContainer in FhirR5Processor
c8b25eb is described below

commit c8b25ebffdb89132b9d5a655289916ad9134f501
Author: Amos Feng <zf...@redhat.com>
AuthorDate: Thu Apr 8 22:53:20 2021 +0800

    Fix #2441 to remove the unused beanContainer in FhirR5Processor
---
 .../camel/quarkus/component/fhir/deployment/r5/FhirR5Processor.java   | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/extensions/fhir/deployment/src/main/java/org/apache/camel/quarkus/component/fhir/deployment/r5/FhirR5Processor.java b/extensions/fhir/deployment/src/main/java/org/apache/camel/quarkus/component/fhir/deployment/r5/FhirR5Processor.java
index 8b0e267..e39e09c 100644
--- a/extensions/fhir/deployment/src/main/java/org/apache/camel/quarkus/component/fhir/deployment/r5/FhirR5Processor.java
+++ b/extensions/fhir/deployment/src/main/java/org/apache/camel/quarkus/component/fhir/deployment/r5/FhirR5Processor.java
@@ -22,7 +22,6 @@ import java.util.Set;
 import javax.inject.Singleton;
 
 import ca.uhn.fhir.context.FhirContext;
-import io.quarkus.arc.deployment.BeanContainerBuildItem;
 import io.quarkus.arc.deployment.SyntheticBeanBuildItem;
 import io.quarkus.deployment.annotations.BuildProducer;
 import io.quarkus.deployment.annotations.BuildStep;
@@ -48,8 +47,7 @@ public class FhirR5Processor {
 
     @BuildStep(onlyIf = FhirFlags.R5Enabled.class)
     @Record(ExecutionTime.STATIC_INIT)
-    SyntheticBeanBuildItem recordContext(FhirContextRecorder fhirContextRecorder, BeanContainerBuildItem beanContainer,
-            R5PropertiesBuildItem propertiesBuildItem) {
+    SyntheticBeanBuildItem recordContext(FhirContextRecorder fhirContextRecorder, R5PropertiesBuildItem propertiesBuildItem) {
         return SyntheticBeanBuildItem.configure(FhirContext.class)
                 .scope(Singleton.class)
                 .named("R5")