Index: Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.Data/SoilProfile/MacroStabilityInwardsSoilProfileUnderSurfaceLine.cs =================================================================== diff -u -r00e2b17f81b30dfe4b71e3535424256d7cd02895 -rf2838b78c54529e9b15208b44de854f7760e350f --- Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.Data/SoilProfile/MacroStabilityInwardsSoilProfileUnderSurfaceLine.cs (.../MacroStabilityInwardsSoilProfileUnderSurfaceLine.cs) (revision 00e2b17f81b30dfe4b71e3535424256d7cd02895) +++ Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.Data/SoilProfile/MacroStabilityInwardsSoilProfileUnderSurfaceLine.cs (.../MacroStabilityInwardsSoilProfileUnderSurfaceLine.cs) (revision f2838b78c54529e9b15208b44de854f7760e350f) @@ -32,18 +32,12 @@ /// /// Creates a new instance of . /// - /// The name of the profile. /// The layers in the profile. /// The preconsolidation stresses defined for the profile. /// Thrown when any parameter is null. - public MacroStabilityInwardsSoilProfileUnderSurfaceLine(string name, - IEnumerable layers, + public MacroStabilityInwardsSoilProfileUnderSurfaceLine(IEnumerable layers, IEnumerable preconsolidationStresses) { - if (name == null) - { - throw new ArgumentNullException(nameof(name)); - } if (layers == null) { throw new ArgumentNullException(nameof(layers)); @@ -52,18 +46,11 @@ { throw new ArgumentNullException(nameof(preconsolidationStresses)); } - - Name = name; Layers = layers; PreconsolidationStresses = preconsolidationStresses; } /// - /// Gets the name of the profile. - /// - public string Name { get; } - - /// /// Gets the layers in the profile. /// public IEnumerable Layers { get; }