Index: Ringtoets/WaveImpactAsphaltCover/src/Ringtoets.WaveImpactAsphaltCover.Service/WaveImpactAsphaltCoverWaveConditionsCalculationService.cs
===================================================================
diff -u -r2b7b943e6814a6b2f8a34c667c32196461165db6 -r58c9f9cdcb8a79a6e42f37e56859d5720cc722cb
--- Ringtoets/WaveImpactAsphaltCover/src/Ringtoets.WaveImpactAsphaltCover.Service/WaveImpactAsphaltCoverWaveConditionsCalculationService.cs (.../WaveImpactAsphaltCoverWaveConditionsCalculationService.cs) (revision 2b7b943e6814a6b2f8a34c667c32196461165db6)
+++ Ringtoets/WaveImpactAsphaltCover/src/Ringtoets.WaveImpactAsphaltCover.Service/WaveImpactAsphaltCoverWaveConditionsCalculationService.cs (.../WaveImpactAsphaltCoverWaveConditionsCalculationService.cs) (revision 58c9f9cdcb8a79a6e42f37e56859d5720cc722cb)
@@ -44,13 +44,13 @@
/// Performs validation over the input parameters. Error and status information is logged during the execution of the operation.
///
/// The for which to validate the values.
- /// The normative assessment level to use for determining water levels.
+ /// The assessment level to use for determining water levels.
/// The file path of the hydraulic boundary database file which to validate.
/// The preprocessor directory to validate.
/// true if there were no validation errors; false otherwise.
/// Thrown when is null.
public static bool Validate(WaveImpactAsphaltCoverWaveConditionsCalculation calculation,
- RoundedDouble normativeAssessmentLevel,
+ RoundedDouble assessmentLevel,
string hydraulicBoundaryDatabaseFilePath,
string preprocessorDirectory)
{
@@ -60,7 +60,7 @@
}
return ValidateWaveConditionsInput(calculation.InputParameters,
- normativeAssessmentLevel,
+ assessmentLevel,
hydraulicBoundaryDatabaseFilePath,
preprocessorDirectory,
Resources.WaveConditionsCalculationService_ValidateInput_default_DesignWaterLevel_name);