This is an automated email from the ASF dual-hosted git repository.
sjaranowski pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-compiler-plugin.git
The following commit(s) were added to refs/heads/master by this push:
new 8e748ec [MCOMPILER-547]: Initialize pathElements to empty
8e748ec is described below
commit 8e748ec58cb415085c6e8005d369ed75753ff2bb
Author: Robert Varga <[email protected]>
AuthorDate: Fri Sep 22 13:07:34 2023 +0200
[MCOMPILER-547]: Initialize pathElements to empty
Signed-off-by: Robert Varga <[email protected]>
---
src/main/java/org/apache/maven/plugin/compiler/CompilerMojo.java | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/main/java/org/apache/maven/plugin/compiler/CompilerMojo.java
b/src/main/java/org/apache/maven/plugin/compiler/CompilerMojo.java
index 228643e..2d3d4fa 100644
--- a/src/main/java/org/apache/maven/plugin/compiler/CompilerMojo.java
+++ b/src/main/java/org/apache/maven/plugin/compiler/CompilerMojo.java
@@ -296,6 +296,7 @@ public class CompilerMojo extends AbstractCompilerMojo {
classpathElements.add(element.getPath());
}
modulepathElements = Collections.emptyList();
+ pathElements = Collections.emptyMap();
}
}