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/01 09:14:20 UTC

[camel-quarkus] branch camel-main updated (40518e010b -> f6e649e833)

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

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


 discard 40518e010b Reverting change because of CAMEL-19405 to get correct CI results
     new f6e649e833 Reverting change because of CAMEL-19405 to get correct CI results

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (40518e010b)
            \
             N -- N -- N   refs/heads/camel-main (f6e649e833)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../org/apache/camel/quarkus/core/FastFactoryFinderResolver.java  | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)


[camel-quarkus] 01/01: Reverting change because of CAMEL-19405 to get correct CI results

Posted by ji...@apache.org.
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 f6e649e8336a2d10de6343134eb62400db0cd6ef
Author: JiriOndrusek <on...@gmail.com>
AuthorDate: Thu Jun 1 10:42:06 2023 +0200

    Reverting change because of CAMEL-19405 to get correct CI results
---
 .../org/apache/camel/quarkus/core/FastFactoryFinderResolver.java  | 8 ++++----
 1 file changed, 4 insertions(+), 4 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 6a7386230f..b10bb67ecb 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,10 +135,10 @@ public class FastFactoryFinderResolver extends DefaultFactoryFinderResolver {
             return Optional.ofNullable(cl);
         }
 
-        @Override
-        public void clear() {
-            //nothibg to clear
-        }
+        //        @Override
+        //        public void clear() {
+        //            //nothing to clear
+        //        }
 
         private Optional<Object> doNewInstance(String key) {
             return findClass(key).map(ObjectHelper::newInstance);