You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ji...@apache.org on 2023/06/05 09:13:39 UTC

[camel-quarkus] 17/17: revert of change required by CAMEL-19405, because daily builds of camel are failing

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

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

commit 4e4d17229f5855a387e843165aadcc06de5ff5aa
Author: JiriOndrusek <on...@gmail.com>
AuthorDate: Mon Jun 5 11:13:03 2023 +0200

    revert of change required by CAMEL-19405, because daily builds of camel are failing
---
 .../org/apache/camel/quarkus/core/FastFactoryFinderResolver.java    | 6 ------
 1 file changed, 6 deletions(-)

diff --git a/extensions-core/core/runtime/src/main/java/org/apache/camel/quarkus/core/FastFactoryFinderResolver.java b/extensions-core/core/runtime/src/main/java/org/apache/camel/quarkus/core/FastFactoryFinderResolver.java
index 558daa5813..421a3860ae 100644
--- a/extensions-core/core/runtime/src/main/java/org/apache/camel/quarkus/core/FastFactoryFinderResolver.java
+++ b/extensions-core/core/runtime/src/main/java/org/apache/camel/quarkus/core/FastFactoryFinderResolver.java
@@ -135,15 +135,9 @@ public class FastFactoryFinderResolver extends DefaultFactoryFinderResolver {
             return Optional.ofNullable(cl);
         }
 
-        @Override
-        public void clear() {
-            //nothing to clear
-        }
-
         private Optional<Object> doNewInstance(String key) {
             return findClass(key).map(ObjectHelper::newInstance);
         }
-
     }
 
 }