Skip to content
Snippets Groups Projects
Commit 06a7b1c2 authored by Antoine Regimbeau's avatar Antoine Regimbeau
Browse files

REFAC: get rid of std::cout

parent 932b2d76
No related branches found
No related tags found
1 merge request!22Register Pipeline Services (ProcessObjects and DataObjects)
...@@ -545,7 +545,6 @@ void Application::FreeRessources() ...@@ -545,7 +545,6 @@ void Application::FreeRessources()
{ {
itk::ProcessObject * current = processStack.top(); itk::ProcessObject * current = processStack.top();
processStack.pop(); processStack.pop();
std::cout<<current->GetNameOfClass()<<std::endl;
// if null continue // if null continue
if ( !current ) if ( !current )
continue; continue;
...@@ -585,7 +584,6 @@ void Application::FreeRessources() ...@@ -585,7 +584,6 @@ void Application::FreeRessources()
// Release data // Release data
for ( auto data : dataSet ) for ( auto data : dataSet )
{ {
std::cout<<"one bulk is freed"<<std::endl;
data->ReleaseData(); data->ReleaseData();
} }
// Call overrode method // Call overrode method
...@@ -701,7 +699,6 @@ int Application::ExecuteAndWriteOutput() ...@@ -701,7 +699,6 @@ int Application::ExecuteAndWriteOutput()
} }
std::ostringstream progressId; std::ostringstream progressId;
progressId << "Writing " << outputParam->GetFileName() << "..."; progressId << "Writing " << outputParam->GetFileName() << "...";
std::cout<<"Add Process and write"<<std::endl;
AddProcess(outputParam->GetWriter(), progressId.str()); AddProcess(outputParam->GetWriter(), progressId.str());
outputParam->Write(); outputParam->Write();
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment