Index: Ringtoets/Piping/src/Ringtoets.Piping.Data/SoilProfile/PipingStochasticSoilModel.cs =================================================================== diff -u -r5e5695f9f466a0ab54a59b61879f5d7a66e6ffb1 -re0ee945d52cc611d081c9a1412e92023a63f91c9 --- Ringtoets/Piping/src/Ringtoets.Piping.Data/SoilProfile/PipingStochasticSoilModel.cs (.../PipingStochasticSoilModel.cs) (revision 5e5695f9f466a0ab54a59b61879f5d7a66e6ffb1) +++ Ringtoets/Piping/src/Ringtoets.Piping.Data/SoilProfile/PipingStochasticSoilModel.cs (.../PipingStochasticSoilModel.cs) (revision e0ee945d52cc611d081c9a1412e92023a63f91c9) @@ -37,12 +37,12 @@ /// public class PipingStochasticSoilModel : Observable, IMechanismStochasticSoilModel { - private readonly List stochasticSoilProfiles = new List(); + private readonly List stochasticSoilProfiles; /// /// Creates a new instance of . /// - /// Name of the segment soil model. + /// The name of the segment soil model. /// The geometry of the stochastic soil model. /// The stochastic soil profiles of the model. /// Thrown when any parameter is null. @@ -75,7 +75,7 @@ Name = name; Geometry = geometry; - this.stochasticSoilProfiles.AddRange(stochasticSoilProfiles); + this.stochasticSoilProfiles = new List(stochasticSoilProfiles); } ///