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-compress.git
The following commit(s) were added to refs/heads/master by this push: new 32ca9a45b Use an import instead of a FQCN 32ca9a45b is described below commit 32ca9a45b1630f464ab867b3889400953dda36ef Author: Gary D. Gregory <garydgreg...@gmail.com> AuthorDate: Mon May 19 08:08:10 2025 -0400 Use an import instead of a FQCN --- .../harmony/unpack200/Codec_decodeInts_OutOfMemoryErrorTest.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/test/java/org/apache/commons/compress/harmony/unpack200/Codec_decodeInts_OutOfMemoryErrorTest.java b/src/test/java/org/apache/commons/compress/harmony/unpack200/Codec_decodeInts_OutOfMemoryErrorTest.java index 3cfd53756..073ad9d2f 100644 --- a/src/test/java/org/apache/commons/compress/harmony/unpack200/Codec_decodeInts_OutOfMemoryErrorTest.java +++ b/src/test/java/org/apache/commons/compress/harmony/unpack200/Codec_decodeInts_OutOfMemoryErrorTest.java @@ -21,6 +21,7 @@ import java.io.ByteArrayInputStream; import java.io.IOException; import java.io.InputStream; +import java.util.Base64; import org.apache.commons.compress.compressors.pack200.Pack200CompressorInputStream; import org.apache.commons.compress.compressors.pack200.Pack200Strategy; @@ -76,7 +77,7 @@ public class Codec_decodeInts_OutOfMemoryErrorTest { @Test public void test() throws IOException { - final byte[] input = java.util.Base64.getDecoder().decode(BASE64_BYTES); + final byte[] input = Base64.getDecoder().decode(BASE64_BYTES); try (InputStream is = new Pack200CompressorInputStream(new ByteArrayInputStream(input), Pack200Strategy.TEMP_FILE)) { // do nothing }