From 07b60e22f53e1e0430b8651349bcce20b103334a Mon Sep 17 00:00:00 2001 From: David Gault Date: Thu, 14 Mar 2024 13:30:02 +0000 Subject: [PATCH] Remove extra debug output --- src/loci/formats/in/ZarrReader.java | 1 - 1 file changed, 1 deletion(-) diff --git a/src/loci/formats/in/ZarrReader.java b/src/loci/formats/in/ZarrReader.java index 122118f..32c777c 100644 --- a/src/loci/formats/in/ZarrReader.java +++ b/src/loci/formats/in/ZarrReader.java @@ -1261,7 +1261,6 @@ public static byte[] openPlane(String path, byte[] buf) throws FormatException, Object image = service.readBytes(shape, offsets); int w = shape[4]; int h = shape[3]; - System.out.println("Success: Read image"); boolean little = service.isLittleEndian(); int bpp = FormatTools.getBytesPerPixel(service.getPixelType()); if (image instanceof byte[]) {