Remove unintended debug output.

This commit is contained in:
Harald Kuhr 2021-03-27 15:19:15 +01:00
parent 967f8e6984
commit b01b820ec8

View File

@ -1147,8 +1147,7 @@ public final class TIFFImageReader extends ImageReaderBase {
// This initializes the tables and other internal settings for the reader, // This initializes the tables and other internal settings for the reader,
// and is actually a feature of JPEG, see abbreviated streams: // and is actually a feature of JPEG, see abbreviated streams:
// http://docs.oracle.com/javase/6/docs/api/javax/imageio/metadata/doc-files/jpeg_metadata.html#abbrev // http://docs.oracle.com/javase/6/docs/api/javax/imageio/metadata/doc-files/jpeg_metadata.html#abbrev
IIOMetadata streamMetadata = jpegReader.getStreamMetadata(); jpegReader.getStreamMetadata();
new XMLSerializer(System.out, "UTF8").serialize(streamMetadata.getAsTree(streamMetadata.getNativeMetadataFormatName()), false);
} }
else if (tilesDown * tilesAcross > 1) { else if (tilesDown * tilesAcross > 1) {
processWarningOccurred("Missing JPEGTables for tiled/striped TIFF with compression: 7 (JPEG)"); processWarningOccurred("Missing JPEGTables for tiled/striped TIFF with compression: 7 (JPEG)");