Skip to content

Commit

Permalink
STYLE: Remove unnecessary empty comment blocks
Browse files Browse the repository at this point in the history
Remove unnecessary empty, unnecessary blocks used before the definition
of a method.
  • Loading branch information
jhlegarreta authored and dzenanz committed Sep 19, 2022
1 parent 283028c commit 3b88398
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -107,9 +107,6 @@ ESMDemonsRegistrationFunction<TFixedImage, TMovingImage, TDisplacementField>::Pr
os << m_SumOfSquaredChange << std::endl;
}

/**
*
*/
template <typename TFixedImage, typename TMovingImage, typename TDisplacementField>
void
ESMDemonsRegistrationFunction<TFixedImage, TMovingImage, TDisplacementField>::SetIntensityDifferenceThreshold(
Expand All @@ -118,9 +115,6 @@ ESMDemonsRegistrationFunction<TFixedImage, TMovingImage, TDisplacementField>::Se
m_IntensityDifferenceThreshold = threshold;
}

/**
*
*/
template <typename TFixedImage, typename TMovingImage, typename TDisplacementField>
double
ESMDemonsRegistrationFunction<TFixedImage, TMovingImage, TDisplacementField>::GetIntensityDifferenceThreshold() const
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
namespace itk
{

// ----------------------------------------------------------------------------
template <typename TImage>
void
LevelSetDenseImage<TImage>::SetImage(ImageType * inputImage)
Expand All @@ -39,7 +38,6 @@ LevelSetDenseImage<TImage>::SetImage(ImageType * inputImage)
this->Modified();
}

// ----------------------------------------------------------------------------
template <typename TImage>
auto
LevelSetDenseImage<TImage>::Evaluate(const InputType & inputIndex) const -> OutputType
Expand All @@ -48,15 +46,13 @@ LevelSetDenseImage<TImage>::Evaluate(const InputType & inputIndex) const -> Outp
return this->m_Image->GetPixel(mapIndex);
}

// ----------------------------------------------------------------------------
template <typename TImage>
void
LevelSetDenseImage<TImage>::Evaluate(const InputType & inputIndex, LevelSetDataType & data) const
{
Superclass::Evaluate(inputIndex, data);
}

// ----------------------------------------------------------------------------
template <typename TImage>
void
LevelSetDenseImage<TImage>::Initialize()
Expand All @@ -66,7 +62,6 @@ LevelSetDenseImage<TImage>::Initialize()
this->m_Image = nullptr;
}

// ----------------------------------------------------------------------------
template <typename TImage>
void
LevelSetDenseImage<TImage>::CopyInformation(const DataObject * data)
Expand All @@ -83,7 +78,6 @@ LevelSetDenseImage<TImage>::CopyInformation(const DataObject * data)
}
}

// ----------------------------------------------------------------------------
template <typename TImage>
void
LevelSetDenseImage<TImage>::Graft(const DataObject * data)
Expand All @@ -102,7 +96,6 @@ LevelSetDenseImage<TImage>::Graft(const DataObject * data)
this->m_NeighborhoodScales = LevelSet->m_NeighborhoodScales;
}

// ----------------------------------------------------------------------------
template <typename TImage>
bool
LevelSetDenseImage<TImage>::IsInsideDomain(const InputType & inputIndex) const
Expand Down

0 comments on commit 3b88398

Please sign in to comment.