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

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

commit 90c4e191ce18c63080565a8c53cbab18c2e0c213
Author: Claus Ibsen <[email protected]>
AuthorDate: Wed May 8 06:00:29 2024 +0200

    Fix HTML route coverage report generation on Windows machines
---
 .../main/java/org/apache/camel/maven/htmlxlsx/process/FileUtil.java    | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git 
a/catalog/camel-report-maven-plugin/src/main/java/org/apache/camel/maven/htmlxlsx/process/FileUtil.java
 
b/catalog/camel-report-maven-plugin/src/main/java/org/apache/camel/maven/htmlxlsx/process/FileUtil.java
index fd886bc1815..14f44155c9c 100644
--- 
a/catalog/camel-report-maven-plugin/src/main/java/org/apache/camel/maven/htmlxlsx/process/FileUtil.java
+++ 
b/catalog/camel-report-maven-plugin/src/main/java/org/apache/camel/maven/htmlxlsx/process/FileUtil.java
@@ -101,6 +101,7 @@ public class FileUtil {
 
     public String readFileFromClassPath(String path) throws IOException {
 
-        return IOUtils.resourceToString(FilenameUtils.separatorsToUnix(path), 
Charset.defaultCharset(), FileUtil.class.getClassLoader());
+        return IOUtils.resourceToString(FilenameUtils.separatorsToUnix(path), 
Charset.defaultCharset(),
+                FileUtil.class.getClassLoader());
     }
 }

Reply via email to