From: Eduardo DAVILA Date: Fri, 7 Feb 2020 15:29:05 +0000 (+0100) Subject: Clean code X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=commitdiff_plain;h=520244567d230681c9f60e8f0304605d2623eaad;p=creaVtk.git Clean code --- diff --git a/bbtk_creaVtk_PKG/src/bbcreaVtkImageContinuousDilate3D.cxx b/bbtk_creaVtk_PKG/src/bbcreaVtkImageContinuousDilate3D.cxx index f7ab426..f616d22 100644 --- a/bbtk_creaVtk_PKG/src/bbcreaVtkImageContinuousDilate3D.cxx +++ b/bbtk_creaVtk_PKG/src/bbcreaVtkImageContinuousDilate3D.cxx @@ -15,7 +15,7 @@ void ImageContinuousDilate3D::Process() vtkImageData* ImageContinuousDilate3D::dilateFilterRecursive(vtkImageData* image, int repetitions, double x, double y, double z) { - vtkImageContinuousDilate3D *dilateFilter = vtkImageContinuousDilate3D ::New(); + vtkImageContinuousDilate3D *dilateFilter = vtkImageContinuousDilate3D::New(); //EED 2017-01-01 Migration VTK7 #if VTK_MAJOR_VERSION <= 5 dilateFilter->SetInput (image); @@ -45,20 +45,16 @@ void ImageContinuousDilate3D::bbUserSetDefaultValues() void ImageContinuousDilate3D::bbUserInitializeProcessing() { - - } void ImageContinuousDilate3D::bbUserFinalizeProcessing() { - // THE FINALIZATION METHOD BODY : // Here does nothing // but this is where you should desallocate the internal/output pointers // if any - } -} -// EO namespace bbcreaVtk + +} // EO namespace bbcreaVtk