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 b04a86599 Comment out debug logging b04a86599 is described below commit b04a865998fd7a2ff4da7097378f1fab88bcfd08 Author: Gary D. Gregory <garydgreg...@gmail.com> AuthorDate: Tue Aug 26 17:03:31 2025 -0400 Comment out debug logging --- .../compressors/pack200/Pack200CompressorInputStreamTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/test/java/org/apache/commons/compress/compressors/pack200/Pack200CompressorInputStreamTest.java b/src/test/java/org/apache/commons/compress/compressors/pack200/Pack200CompressorInputStreamTest.java index 85d5a6124..92eb4bf8f 100644 --- a/src/test/java/org/apache/commons/compress/compressors/pack200/Pack200CompressorInputStreamTest.java +++ b/src/test/java/org/apache/commons/compress/compressors/pack200/Pack200CompressorInputStreamTest.java @@ -35,8 +35,8 @@ public class Pack200CompressorInputStreamTest { @BeforeEach void beforeAll() { - final Runtime runtime = Runtime.getRuntime(); - System.out.printf("freeMemory %,d, maxMemory %,d, totalMemory %,d%n", runtime.freeMemory(), runtime.maxMemory(), runtime.totalMemory()); + // final Runtime runtime = Runtime.getRuntime(); + // System.out.printf("freeMemory %,d, maxMemory %,d, totalMemory %,d%n", runtime.freeMemory(), runtime.maxMemory(), runtime.totalMemory()); } private void assertThrowsIOException(final String inputBase64) {