Index: Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.Primitives/MacroStabilityInwardsSoilLayer2D.cs
===================================================================
diff -u -r9b0389445c63035ae70e99e30cc2d95facd09616 -r6f1f1f2dc45d71b0b40c6a84ed233d50f04c4b62
--- Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.Primitives/MacroStabilityInwardsSoilLayer2D.cs (.../MacroStabilityInwardsSoilLayer2D.cs) (revision 9b0389445c63035ae70e99e30cc2d95facd09616)
+++ Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.Primitives/MacroStabilityInwardsSoilLayer2D.cs (.../MacroStabilityInwardsSoilLayer2D.cs) (revision 6f1f1f2dc45d71b0b40c6a84ed233d50f04c4b62)
@@ -35,13 +35,9 @@
///
/// The ring describing the outer boundaries of the layer.
/// The rings describing the holes within the outer boundaries of
- /// the layer.
- /// The preconsolidation stresses that are defined
- /// for the layer.
+ /// the layer.
/// Thrown when any parameter is null.
- public MacroStabilityInwardsSoilLayer2D(Ring outerRing,
- IEnumerable holes,
- IEnumerable preconsolidationStresses)
+ public MacroStabilityInwardsSoilLayer2D(Ring outerRing, IEnumerable holes)
{
if (outerRing == null)
{
@@ -51,14 +47,9 @@
{
throw new ArgumentNullException(nameof(holes));
}
- if (preconsolidationStresses == null)
- {
- throw new ArgumentNullException(nameof(preconsolidationStresses));
- }
Properties = new MacroStabilityInwardsSoilLayerProperties();
OuterRing = outerRing;
- PreconsolidationStresses = preconsolidationStresses.ToArray();
Holes = holes.ToArray();
}
@@ -77,11 +68,6 @@
///
public Ring[] Holes { get; }
- ///
- /// Gets the preconsolidation stresses that are defined for the .
- ///
- public MacroStabilityInwardsPreconsolidationStress[] PreconsolidationStresses { get; }
-
public override bool Equals(object obj)
{
if (ReferenceEquals(null, obj))