Index: Ringtoets/Common/src/Ringtoets.Common.Data/Hydraulics/HydraulicBoundaryLocationCalculation.cs =================================================================== diff -u -rd2d2142de47452c1faa571a5de3157d6f3205812 -rcd48021e80f6584ce1e29c8ab85365fb055a3a1e --- Ringtoets/Common/src/Ringtoets.Common.Data/Hydraulics/HydraulicBoundaryLocationCalculation.cs (.../HydraulicBoundaryLocationCalculation.cs) (revision d2d2142de47452c1faa571a5de3157d6f3205812) +++ Ringtoets/Common/src/Ringtoets.Common.Data/Hydraulics/HydraulicBoundaryLocationCalculation.cs (.../HydraulicBoundaryLocationCalculation.cs) (revision cd48021e80f6584ce1e29c8ab85365fb055a3a1e) @@ -59,11 +59,14 @@ /// Gets a value indicating whether the calculation has already been calculated. /// /// true if the calculation is fully calculated, false otherwise. - /// A calculation is fully calculated, depending on if the illustration points + /// A calculation is fully calculated, depending on whether the illustration points /// are set to be calculated. - public bool IsCalculated() + public bool IsCalculated { - return HasOutput && InputParameters.ShouldIllustrationPointsBeCalculated == Output.HasGeneralResult; + get + { + return HasOutput && InputParameters.ShouldIllustrationPointsBeCalculated == Output.HasGeneralResult; + } } } } \ No newline at end of file