]> Creatis software - creaVtk.git/commitdiff
Clean code
authorEduardo DAVILA <davila@creatis.insa-lyon.fr>
Fri, 25 Aug 2023 15:57:29 +0000 (17:57 +0200)
committerEduardo DAVILA <davila@creatis.insa-lyon.fr>
Fri, 25 Aug 2023 15:57:29 +0000 (17:57 +0200)
bbtk_creaVtk_PKG/src/bbcreaVtkMeshReduction_DecimatePro.cxx

index 5dc340e9335d81c80b4fe81ac414dc7dcd616b20..607ed2160476434e446e219dc4461d86bf541f39 100644 (file)
@@ -15,7 +15,6 @@ BBTK_BLACK_BOX_IMPLEMENTATION(MeshReduction_DecimatePro,bbtk::AtomicBlackBox);
 //===== 
 void MeshReduction_DecimatePro::Process()
 {
-
 // THE MAIN PROCESSING METHOD BODY
 //   Here we simply set the input 'In' value to the output 'Out'
 //   And print out the output value
@@ -27,15 +26,11 @@ void MeshReduction_DecimatePro::Process()
 //      (the one provided in the attribute 'name' of the tag 'input')
 //    * TYPE is the C++ type of the input/output
 //      (the one provided in the attribute 'type' of the tag 'input')
-
        if (firsttime==true)
        {
                firsttime       = false;
                decimatepro = vtkDecimatePro::New();
        }
-
-    printf("EED MeshReduction_DecimatePro::DoProcess  %s    %p \n", bbGetFullName().c_str(), bbGetInputIn() );
-
     if (bbGetInputIn()!=NULL)
     {
         decimatepro->SetInputData( bbGetInputIn() );