Index: Ringtoets/Piping/src/Ringtoets.Piping.IO/Builders/SoilProfileBuilder2D.cs =================================================================== diff -u -r5906f61fff270a7526253bea07dfecdf680898ed -rad0f4a7a0f8b9f065da77eda1a450ac3696b8f7f --- Ringtoets/Piping/src/Ringtoets.Piping.IO/Builders/SoilProfileBuilder2D.cs (.../SoilProfileBuilder2D.cs) (revision 5906f61fff270a7526253bea07dfecdf680898ed) +++ Ringtoets/Piping/src/Ringtoets.Piping.IO/Builders/SoilProfileBuilder2D.cs (.../SoilProfileBuilder2D.cs) (revision ad0f4a7a0f8b9f065da77eda1a450ac3696b8f7f) @@ -36,7 +36,6 @@ private readonly ICollection layers = new Collection(); private readonly double atX; private readonly string profileName; - private readonly long soilProfileId; private double bottom; @@ -46,10 +45,9 @@ /// /// The name for the constructed by the . /// The x position from which to obtain a 1D profile. - /// The identifier of the profile in the database. /// Thrown when can not be used to determine intersections with /// (is ). - internal SoilProfileBuilder2D(string profileName, double atX, long soilProfileId) + internal SoilProfileBuilder2D(string profileName, double atX) { if (double.IsNaN(atX)) { @@ -59,7 +57,6 @@ this.profileName = profileName; this.atX = atX; bottom = double.MaxValue; - this.soilProfileId = soilProfileId; } /// @@ -73,7 +70,7 @@ { try { - return new PipingSoilProfile(profileName, bottom, layers, SoilProfileType.SoilProfile2D, soilProfileId); + return new PipingSoilProfile(profileName, bottom, layers, SoilProfileType.SoilProfile2D); } catch (ArgumentException e) { @@ -89,7 +86,7 @@ /// Thrown when either: /// /// the 's geometry contains vertical segments at the - /// X-coordinate given for the construction of the . + /// X-coordinate given for the construction of the . /// any of the distributions of the stochastic parameters for is not defined /// as lognormal or is shifted when it should not be ///