You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2023/08/28 18:41:57 UTC

[camel] 03/03: CAMEL-19795: camel-joor-dsl: Make it possible to eager preParse all .java files together in the same compilation unit.

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

davsclaus pushed a commit to branch java-dsl-eager
in repository https://gitbox.apache.org/repos/asf/camel.git

commit c10a9cd8b9eddb400168d973df04cf764b019924
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Mon Aug 28 20:32:40 2023 +0200

    CAMEL-19795: camel-joor-dsl: Make it possible to eager preParse all .java files together in the same compilation unit.
---
 .../org/apache/camel/dsl/yaml/IntegrationLoaderDependenciesTest.groovy  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dsl/camel-yaml-dsl/camel-yaml-dsl/src/test/groovy/org/apache/camel/dsl/yaml/IntegrationLoaderDependenciesTest.groovy b/dsl/camel-yaml-dsl/camel-yaml-dsl/src/test/groovy/org/apache/camel/dsl/yaml/IntegrationLoaderDependenciesTest.groovy
index 81b42151e61..2f2ee3c62a0 100644
--- a/dsl/camel-yaml-dsl/camel-yaml-dsl/src/test/groovy/org/apache/camel/dsl/yaml/IntegrationLoaderDependenciesTest.groovy
+++ b/dsl/camel-yaml-dsl/camel-yaml-dsl/src/test/groovy/org/apache/camel/dsl/yaml/IntegrationLoaderDependenciesTest.groovy
@@ -21,7 +21,7 @@ import org.apache.camel.spi.DependencyStrategy
 
 class IntegrationLoaderDependenciesTest extends YamlTestSupport {
 
-    var List<String> deps = new ArrayList<>()
+    var Set<String> deps = new LinkedHashSet<>()
 
     @Override
     def doSetup() {