Index: Ringtoets/StabilityStoneCover/src/Ringtoets.StabilityStoneCover.Service/StabilityStoneCoverWaveConditionsCalculationActivity.cs =================================================================== diff -u -r2ebc37cd8cfea18e73b2db4975be5a48272ba9ba -rb2b9fdf365e70928a05c57966eeed30d9050e528 --- Ringtoets/StabilityStoneCover/src/Ringtoets.StabilityStoneCover.Service/StabilityStoneCoverWaveConditionsCalculationActivity.cs (.../StabilityStoneCoverWaveConditionsCalculationActivity.cs) (revision 2ebc37cd8cfea18e73b2db4975be5a48272ba9ba) +++ Ringtoets/StabilityStoneCover/src/Ringtoets.StabilityStoneCover.Service/StabilityStoneCoverWaveConditionsCalculationActivity.cs (.../StabilityStoneCoverWaveConditionsCalculationActivity.cs) (revision b2b9fdf365e70928a05c57966eeed30d9050e528) @@ -53,19 +53,19 @@ { if (calculation == null) { - throw new ArgumentNullException("calculation"); + throw new ArgumentNullException(nameof(calculation)); } if (hlcdFilePath == null) { - throw new ArgumentNullException("hlcdFilePath"); + throw new ArgumentNullException(nameof(hlcdFilePath)); } if (failureMechanism == null) { - throw new ArgumentNullException("failureMechanism"); + throw new ArgumentNullException(nameof(failureMechanism)); } if (assessmentSection == null) { - throw new ArgumentNullException("assessmentSection"); + throw new ArgumentNullException(nameof(assessmentSection)); } this.calculation = calculation;