This is an automated email from the ASF dual-hosted git repository.
ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-bcel.git
The following commit(s) were added to refs/heads/master by this push:
new c3317721 Make reproducible on the Azul JDK
c3317721 is described below
commit c33177218eeea2245b3ec9db75ac911684e15dae
Author: Gary Gregory <[email protected]>
AuthorDate: Wed Jan 7 12:18:43 2026 -0500
Make reproducible on the Azul JDK
To simplify reproducible builds, update
org.apache.bcel.classfile.ConstantPoolModuleToStringTest.ToStringVisitor.visitModuleRequires(ModuleRequires)
for the Azul JDK
---
.../java/org/apache/bcel/classfile/ConstantPoolModuleToStringTest.java | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git
a/src/test/java/org/apache/bcel/classfile/ConstantPoolModuleToStringTest.java
b/src/test/java/org/apache/bcel/classfile/ConstantPoolModuleToStringTest.java
index f7297f88..fca63996 100644
---
a/src/test/java/org/apache/bcel/classfile/ConstantPoolModuleToStringTest.java
+++
b/src/test/java/org/apache/bcel/classfile/ConstantPoolModuleToStringTest.java
@@ -397,7 +397,8 @@ class ConstantPoolModuleToStringTest {
"net.bytebuddy",
"com.sun.jna",
"junit",
- "com.azul.tooling"); // com.azul.tooling for
reproducibility with Azul JDK
+ "com.azul.tooling",
+ "com.azul.crs.client"); // com.azul.* for reproducibility
with Azul JDK
assertTrue(condition, s);
}