From 28a788e388c47c37e1915a6ebdd397aac6b7e1ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Traizet?= Date: Tue, 28 Jul 2020 15:55:51 +0200 Subject: [PATCH] STY: removed cout --- Modules/Core/Metadata/src/otbImageMetadataInterfaceFactory.cxx | 1 - Modules/IO/IOGDAL/src/otbGDALImageIO.cxx | 3 --- 2 files changed, 4 deletions(-) diff --git a/Modules/Core/Metadata/src/otbImageMetadataInterfaceFactory.cxx b/Modules/Core/Metadata/src/otbImageMetadataInterfaceFactory.cxx index 77f45f8f4b..2763bc034c 100644 --- a/Modules/Core/Metadata/src/otbImageMetadataInterfaceFactory.cxx +++ b/Modules/Core/Metadata/src/otbImageMetadataInterfaceFactory.cxx @@ -114,7 +114,6 @@ ImageMetadataInterfaceFactory } catch(MissingMetadataException& e) { - std::cout << io->GetNameOfClass() <<" : "<< e.what() << "\n"; // silent catch of MissingMetadataException // just means that this IMI can't parse the file } diff --git a/Modules/IO/IOGDAL/src/otbGDALImageIO.cxx b/Modules/IO/IOGDAL/src/otbGDALImageIO.cxx index 5dcb6b8ae1..9344dd7bb0 100644 --- a/Modules/IO/IOGDAL/src/otbGDALImageIO.cxx +++ b/Modules/IO/IOGDAL/src/otbGDALImageIO.cxx @@ -489,9 +489,6 @@ void GDALImageIO::InternalReadImageInformation() tempSize.first = GDALGetRasterBandXSize(dataset->GetRasterBand(1)->GetOverview(iOverview)); tempSize.second = GDALGetRasterBandYSize(dataset->GetRasterBand(1)->GetOverview(iOverview)); m_OverviewsSize.push_back(tempSize); - - /*std::cout << "Overviews size of input file" << m_FileName << ": " - << m_OverviewsSize.back().first << " x " << m_OverviewsSize.back().second << std::endl; */ } this->SetNumberOfComponents(m_NbBands); -- GitLab