Index: Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.Service/GrassCoverErosionInwardsCalculationService.cs =================================================================== diff -u -r62492ce3e891365124204d4b570917c4ee298a41 -r0cec076c347368ee4a1c653323376022fb96c716 --- Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.Service/GrassCoverErosionInwardsCalculationService.cs (.../GrassCoverErosionInwardsCalculationService.cs) (revision 62492ce3e891365124204d4b570917c4ee298a41) +++ Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.Service/GrassCoverErosionInwardsCalculationService.cs (.../GrassCoverErosionInwardsCalculationService.cs) (revision 0cec076c347368ee4a1c653323376022fb96c716) @@ -310,7 +310,6 @@ return CreateDikeHeightOutput(dikeHeightCalculator, calculation.Name, - Resources.GrassCoverErosionInwardsCalculationService_DikeHeight, dikeHeightCalculationInput.Beta, norm); } @@ -364,7 +363,6 @@ return CreateOvertoppingRateOutput(overtoppingRateCalculator, calculation.Name, - Resources.GrassCoverErosionInwardsCalculationService_OvertoppingRate, overtoppingRateCalculationInput.Beta, norm); } @@ -607,15 +605,13 @@ /// /// The calculator used for performing the calculation. /// The name of the calculation. - /// The name of the step that is performed. /// The target reliability for the calculation. /// The target probability for the calculation. /// A . /// Thrown when /// or the calculated probability falls outside the [0.0, 1.0] range and is not . private static DikeHeightOutput CreateDikeHeightOutput(IHydraulicLoadsCalculator calculator, string calculationName, - string stepName, double targetReliability, double targetProbability) { @@ -629,7 +625,7 @@ { log.Warn( string.Format(Resources.GrassCoverErosionInwardsCalculationService_Calculation_of_type_0_for_calculation_with_name_1_not_converged, - stepName, + Resources.GrassCoverErosionInwardsCalculationService_DikeHeight, calculationName)); } @@ -643,15 +639,13 @@ /// /// The calculator used for performing the calculation. /// The name of the calculation. - /// The name of the step that is performed. /// The target reliability for the calculation. /// The target probability for the calculation. /// A . /// Thrown when /// or the calculated probability falls outside the [0.0, 1.0] range and is not . private static OvertoppingRateOutput CreateOvertoppingRateOutput(IHydraulicLoadsCalculator calculator, string calculationName, - string stepName, double targetReliability, double targetProbability) { @@ -665,7 +659,7 @@ { log.Warn( string.Format(Resources.GrassCoverErosionInwardsCalculationService_Calculation_of_type_0_for_calculation_with_name_1_not_converged, - stepName, + Resources.GrassCoverErosionInwardsCalculationService_OvertoppingRate, calculationName)); }