From 9abfabd64e7ff75d73ffcc0907a34db3883b3fcf Mon Sep 17 00:00:00 2001 From: Isaac Teles-Rosario Date: Mon, 25 Apr 2022 03:43:18 -0400 Subject: [PATCH] Update GZipbyte.go --- CTng/GZip/GZipbyte.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CTng/GZip/GZipbyte.go b/CTng/GZip/GZipbyte.go index a196c66..b546ae0 100644 --- a/CTng/GZip/GZipbyte.go +++ b/CTng/GZip/GZipbyte.go @@ -12,7 +12,7 @@ func Compress(input []byte) []byte { compr.Close() output := buf.Bytes() - print(output) + //print(output) return output }