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/03/03 07:42:35 UTC

[camel-quarkus] 01/02: Less reflection in Paho extension

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

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

commit a6d1922495eac87bb89f13fec04b8312f614902d
Author: Peter Palaga <pp...@redhat.com>
AuthorDate: Tue Mar 2 21:56:39 2021 +0100

    Less reflection in Paho extension
---
 .../apache/camel/quarkus/component/paho/deployment/PahoProcessor.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/extensions/paho/deployment/src/main/java/org/apache/camel/quarkus/component/paho/deployment/PahoProcessor.java b/extensions/paho/deployment/src/main/java/org/apache/camel/quarkus/component/paho/deployment/PahoProcessor.java
index 81e32c3..d109168 100644
--- a/extensions/paho/deployment/src/main/java/org/apache/camel/quarkus/component/paho/deployment/PahoProcessor.java
+++ b/extensions/paho/deployment/src/main/java/org/apache/camel/quarkus/component/paho/deployment/PahoProcessor.java
@@ -34,7 +34,7 @@ class PahoProcessor {
 
     @BuildStep
     ReflectiveClassBuildItem registerReflectiveClasses() {
-        return new ReflectiveClassBuildItem(true, true, JSR47Logger.class);
+        return new ReflectiveClassBuildItem(false, false, JSR47Logger.class);
     }
 
     @BuildStep