Index: Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.Forms/PresentationObjects/PipingContext.cs
===================================================================
diff -u -r4bd71eca0b6db2959ccb01d6504d1bf5058603bd -rf967603d23371a8774cc6917e1feeb94009d30f5
--- Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.Forms/PresentationObjects/PipingContext.cs (.../PipingContext.cs) (revision 4bd71eca0b6db2959ccb01d6504d1bf5058603bd)
+++ Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.Forms/PresentationObjects/PipingContext.cs (.../PipingContext.cs) (revision f967603d23371a8774cc6917e1feeb94009d30f5)
@@ -104,10 +104,10 @@
///
/// The surface lines.
/// The stochastic soil models.
- /// The piping failure mechanism.
+ /// The macro stability inwards failure mechanism.
/// The assessment section.
/// Thrown when any input parameter is null.
- private static void AssertInputsAreNotNull(object surfaceLines, object stochasticSoilModels, object pipingFailureMechanism, object assessmentSection)
+ private static void AssertInputsAreNotNull(object surfaceLines, object stochasticSoilModels, object macroStabilityInwardsFailureMechanism, object assessmentSection)
{
if (surfaceLines == null)
{
@@ -117,9 +117,9 @@
{
throw new ArgumentNullException(nameof(stochasticSoilModels));
}
- if (pipingFailureMechanism == null)
+ if (macroStabilityInwardsFailureMechanism == null)
{
- throw new ArgumentNullException(nameof(pipingFailureMechanism));
+ throw new ArgumentNullException(nameof(macroStabilityInwardsFailureMechanism));
}
if (assessmentSection == null)
{