This is an automated email from the ASF dual-hosted git repository.
veithen pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ws-axiom.git
The following commit(s) were added to refs/heads/master by this push:
new 372768c79 Fix the ImmutableList type used by ParentNode
372768c79 is described below
commit 372768c7985225ff083783e02b351839a7c0bb35
Author: Andreas Veithen-Knowles <[email protected]>
AuthorDate: Sat Mar 28 23:53:10 2026 +0000
Fix the ImmutableList type used by ParentNode
---
.../src/main/java/org/apache/axiom/testutils/suite/ParentNode.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/testing/matrix-testsuite/src/main/java/org/apache/axiom/testutils/suite/ParentNode.java
b/testing/matrix-testsuite/src/main/java/org/apache/axiom/testutils/suite/ParentNode.java
index 6a7a270c1..82c40e707 100644
---
a/testing/matrix-testsuite/src/main/java/org/apache/axiom/testutils/suite/ParentNode.java
+++
b/testing/matrix-testsuite/src/main/java/org/apache/axiom/testutils/suite/ParentNode.java
@@ -34,9 +34,9 @@ import com.google.inject.Injector;
* <p>Children are supplied at construction time; instances are immutable
after creation.
*/
public final class ParentNode extends MatrixTestNode {
- private final ImmutableList<MatrixTestNode> children;
+ private final ImmutableList<? extends MatrixTestNode> children;
- public ParentNode(ImmutableList<MatrixTestNode> children) {
+ public ParentNode(ImmutableList<? extends MatrixTestNode> children) {
this.children = children;
}