Index: Application/Ringtoets/src/Application.Ringtoets.Storage/Read/SurfaceLineEntityReadExtensions.cs =================================================================== diff -u -r7f82fd637dc8796f3d270cb0fa6d9ab18548c6f4 -r091da501e5dd61cf05b94c4d4f075c1e73b3d950 --- Application/Ringtoets/src/Application.Ringtoets.Storage/Read/SurfaceLineEntityReadExtensions.cs (.../SurfaceLineEntityReadExtensions.cs) (revision 7f82fd637dc8796f3d270cb0fa6d9ab18548c6f4) +++ Application/Ringtoets/src/Application.Ringtoets.Storage/Read/SurfaceLineEntityReadExtensions.cs (.../SurfaceLineEntityReadExtensions.cs) (revision 091da501e5dd61cf05b94c4d4f075c1e73b3d950) @@ -48,10 +48,6 @@ /// Thrown when any input parameter is null. /// Thrown when /// of is empty. - /// Thrown when the - /// contains an invalid type of characteristic point. - /// Thrown when the contains a - /// characteristic point that is not supported. public static PipingSurfaceLine ReadAsPipingSurfaceLine(this SurfaceLineEntity entity, ReadConversionCollector collector) { @@ -93,10 +89,6 @@ /// Thrown when any input parameter is null. /// Thrown when /// of is empty. - /// Thrown when the - /// contains an invalid type of characteristic point. - /// Thrown when the contains a - /// characteristic point that is not supported. public static MacroStabilityInwardsSurfaceLine ReadAsMacroStabilityInwardsSurfaceLine( this SurfaceLineEntity entity, ReadConversionCollector collector) @@ -134,16 +126,6 @@ entity.ReferenceLineIntersectionY.ToNullAsNaN()); } - /// - /// Reads the characteristic points from the and sets these - /// to the . - /// - /// The entity to read. - /// The surface line to set the characteristic point on. - /// Thrown when the - /// contains an invalid type of characteristic point. - /// Thrown when the contains a - /// characteristic point that is not supported. private static void ReadCharacteristicPoints(this SurfaceLineEntity entity, PipingSurfaceLine surfaceLine) { var characteristicPoints = new Dictionary(); @@ -157,16 +139,6 @@ characteristicPoints.ForEachElementDo(cp => SetCharacteristicPoint(surfaceLine, cp.Key, cp.Value)); } - /// - /// Reads the characteristic points from the and sets these - /// to the . - /// - /// The entity to read. - /// The surface line to set the characteristic point on. - /// Thrown when the - /// contains an invalid type of characteristic point. - /// Thrown when the contains a - /// characteristic point that is not supported. private static void ReadCharacteristicPoints(this SurfaceLineEntity entity, MacroStabilityInwardsSurfaceLine surfaceLine) { var characteristicPoints = new Dictionary(); @@ -180,16 +152,6 @@ characteristicPoints.ForEachElementDo(cp => SetCharacteristicPoint(surfaceLine, cp.Key, cp.Value)); } - - /// - /// Sets the characteristic point and its coordinate to the . - /// - /// The surface line to set the characteristic point on. - /// The type of characteristic point. - /// The point associated with the characteristic point. - /// Thrown when is not - /// a valid . - /// Thrown when is not supported. private static void SetCharacteristicPoint(PipingSurfaceLine surfaceLine, PipingCharacteristicPointType type, Point3D geometryPoint) @@ -226,15 +188,6 @@ } } - /// - /// Sets the characteristic point and its coordinate to the . - /// - /// The surface line to set the characteristic point on. - /// The type of characteristic point. - /// The point associated with the characteristic point. - /// Thrown when is not - /// a valid . - /// Thrown when is not supported. private static void SetCharacteristicPoint(MacroStabilityInwardsSurfaceLine surfaceLine, MacroStabilityInwardsCharacteristicPointType type, Point3D geometryPoint)