You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by nf...@apache.org on 2022/11/21 08:33:06 UTC

[camel] branch CAMEL-18730/fix-camel-report-maven-plugin-import-issue-3.14 created (now f53dcab08bf)

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

nfilotto pushed a change to branch CAMEL-18730/fix-camel-report-maven-plugin-import-issue-3.14
in repository https://gitbox.apache.org/repos/asf/camel.git


      at f53dcab08bf CAMEL-18730: camel-report-maven-plugin - Fix import issue

This branch includes the following new commits:

     new f53dcab08bf CAMEL-18730: camel-report-maven-plugin - Fix import issue

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.



[camel] 01/01: CAMEL-18730: camel-report-maven-plugin - Fix import issue

Posted by nf...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

nfilotto pushed a commit to branch CAMEL-18730/fix-camel-report-maven-plugin-import-issue-3.14
in repository https://gitbox.apache.org/repos/asf/camel.git

commit f53dcab08bf5a96a634b3d48eb9c194ae752bfc3
Author: Nicolas Filotto <nf...@talend.com>
AuthorDate: Mon Nov 21 09:32:38 2022 +0100

    CAMEL-18730: camel-report-maven-plugin - Fix import issue
---
 .../src/main/java/org/apache/camel/maven/RouteCoverageMojo.java         | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/catalog/camel-report-maven-plugin/src/main/java/org/apache/camel/maven/RouteCoverageMojo.java b/catalog/camel-report-maven-plugin/src/main/java/org/apache/camel/maven/RouteCoverageMojo.java
index 04738f6de2f..bb005c020ef 100644
--- a/catalog/camel-report-maven-plugin/src/main/java/org/apache/camel/maven/RouteCoverageMojo.java
+++ b/catalog/camel-report-maven-plugin/src/main/java/org/apache/camel/maven/RouteCoverageMojo.java
@@ -22,6 +22,7 @@ import java.io.FileInputStream;
 import java.io.InputStream;
 import java.io.PrintStream;
 import java.util.ArrayList;
+import java.util.Collections;
 import java.util.Iterator;
 import java.util.LinkedHashMap;
 import java.util.LinkedHashSet;
@@ -47,7 +48,6 @@ import org.w3c.dom.Attr;
 import org.w3c.dom.Document;
 import org.w3c.dom.Element;
 
-import edu.emory.mathcs.backport.java.util.Collections;
 import org.apache.camel.maven.model.RouteCoverageNode;
 import org.apache.camel.parser.RouteBuilderParser;
 import org.apache.camel.parser.XmlRouteParser;