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 9b12a982 Make reproducible on the Azul JDK
9b12a982 is described below

commit 9b12a982fc56515fb5c2e3807cd433d302f19b3a
Author: Gary Gregory <[email protected]>
AuthorDate: Wed Jan 7 12:29:52 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
---
 .../org/apache/bcel/classfile/ConstantPoolModuleToStringTest.java     | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/src/test/java/org/apache/bcel/classfile/ConstantPoolModuleToStringTest.java 
b/src/test/java/org/apache/bcel/classfile/ConstantPoolModuleToStringTest.java
index 52609022..64399ec4 100644
--- 
a/src/test/java/org/apache/bcel/classfile/ConstantPoolModuleToStringTest.java
+++ 
b/src/test/java/org/apache/bcel/classfile/ConstantPoolModuleToStringTest.java
@@ -397,8 +397,8 @@ class ConstantPoolModuleToStringTest {
                     "net.bytebuddy",
                     "com.sun.jna",
                     "junit",
-                    "com.azul.tooling", // com.azul.* for reproducibility with 
Azul JDK
-                    "com.azul.crs.client");
+                    // com.azul.* for reproducibility with Azul JDK
+                    "com.azul.");
             assertTrue(condition, s);
         }
 

Reply via email to