Index: Ringtoets/Piping/src/Ringtoets.Piping.Forms/PresentationObjects/PipingContext.cs
===================================================================
diff -u -r06abcaadc2936c0bf3fde73916c051f37f698505 -rcbe47edc5aec1175bceda95452ebe5697eda181d
--- Ringtoets/Piping/src/Ringtoets.Piping.Forms/PresentationObjects/PipingContext.cs (.../PipingContext.cs) (revision 06abcaadc2936c0bf3fde73916c051f37f698505)
+++ Ringtoets/Piping/src/Ringtoets.Piping.Forms/PresentationObjects/PipingContext.cs (.../PipingContext.cs) (revision cbe47edc5aec1175bceda95452ebe5697eda181d)
@@ -104,23 +104,23 @@
/// Asserts the inputs are not null.
///
/// The surface lines.
- /// The soil profiles.
+ /// The stochastic soil models.
/// The piping failure mechanism.
/// The assessment section.
/// When any input parameter is null.
- private static void AssertInputsAreNotNull(object surfaceLines, object soilProfiles, object pipingFailureMechanism, object assessmentSection)
+ private static void AssertInputsAreNotNull(object surfaceLines, object stochasticSoilModels, object pipingFailureMechanism, object assessmentSection)
{
if (surfaceLines == null)
{
var message = string.Format(Resources.PipingContext_AssertInputsAreNotNull_DataDescription_0_cannot_be_null,
Resources.PipingContext_DataDescription_Surfacelines);
throw new ArgumentNullException("surfaceLines", message);
}
- if (soilProfiles == null)
+ if (stochasticSoilModels == null)
{
var message = string.Format(Resources.PipingContext_AssertInputsAreNotNull_DataDescription_0_cannot_be_null,
- Resources.PipingContext_DataDescription_Soilprofiles);
- throw new ArgumentNullException("soilProfiles", message);
+ Resources.PipingContext_DataDescription_StochasticSoilModels);
+ throw new ArgumentNullException("stochasticSoilModels", message);
}
if (pipingFailureMechanism == null)
{