Skip to content

Commit

Permalink
Merge pull request #331 from basil/jzlib
Browse files Browse the repository at this point in the history
Use Java 7 versions of `GZIPInputStream` and `GZIPOutputStream`
  • Loading branch information
jglick committed May 28, 2024
2 parents 4c5a185 + 1e1514d commit 33eb726
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@

package org.jenkinsci.plugins.workflow.log;

import com.jcraft.jzlib.GZIPInputStream;
import com.jcraft.jzlib.GZIPOutputStream;
import java.util.zip.GZIPInputStream;
import java.util.zip.GZIPOutputStream;
import hudson.console.AnnotatedLargeText;
import hudson.console.ConsoleAnnotationOutputStream;
import hudson.console.ConsoleAnnotator;
Expand Down

0 comments on commit 33eb726

Please sign in to comment.