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

maartenc pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ant-ivy.git


The following commit(s) were added to refs/heads/master by this push:
     new 5f9e01d7 Added the default constructor in an attempt to fix a 
NoClassDefFoundError
5f9e01d7 is described below

commit 5f9e01d7a0e83512ccdeeea59ccd732289bc06fd
Author: Maarten Coene <4728619+maart...@users.noreply.github.com>
AuthorDate: Wed Apr 23 23:46:50 2025 +0200

    Added the default constructor in an attempt to fix a NoClassDefFoundError
---
 src/java/org/apache/ivy/plugins/pack/Pack200Packing.java | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/src/java/org/apache/ivy/plugins/pack/Pack200Packing.java 
b/src/java/org/apache/ivy/plugins/pack/Pack200Packing.java
index 9a47da1e..8143011e 100644
--- a/src/java/org/apache/ivy/plugins/pack/Pack200Packing.java
+++ b/src/java/org/apache/ivy/plugins/pack/Pack200Packing.java
@@ -28,6 +28,9 @@ public class Pack200Packing extends StreamPacking {
 
     private static final String[] NAMES = {"pack200"};
 
+    public Pack200Packing() {
+    }
+
     @Override
     public String[] getNames() {
         return NAMES;

Reply via email to