Index: Ringtoets/Piping/src/Ringtoets.Piping.IO/Importers/PipingSurfaceLineExtensions.cs =================================================================== diff -u -rb2d6fb0b948754d598692e76e2dc1a25b311d7e7 -rd6fe8399e8398224cf1bda9259052232d85b85a4 --- Ringtoets/Piping/src/Ringtoets.Piping.IO/Importers/PipingSurfaceLineExtensions.cs (.../PipingSurfaceLineExtensions.cs) (revision b2d6fb0b948754d598692e76e2dc1a25b311d7e7) +++ Ringtoets/Piping/src/Ringtoets.Piping.IO/Importers/PipingSurfaceLineExtensions.cs (.../PipingSurfaceLineExtensions.cs) (revision d6fe8399e8398224cf1bda9259052232d85b85a4) @@ -29,7 +29,7 @@ namespace Ringtoets.Piping.IO.Importers { /// - /// Extension methods for the class. + /// Extension methods for the class. /// public static class PipingSurfaceLineExtensions { @@ -44,7 +44,7 @@ /// Thrown when is null. /// Thrown when defines /// a dike toe at polder side in front of the dike toe at river side. - public static void SetCharacteristicPoints(this RingtoetsPipingSurfaceLine surfaceLine, CharacteristicPoints characteristicPoints) + public static void SetCharacteristicPoints(this PipingSurfaceLine surfaceLine, CharacteristicPoints characteristicPoints) { if (surfaceLine == null) { @@ -66,13 +66,13 @@ } /// - /// Tries to set the at the location of + /// Tries to set the at the location of /// . /// - /// The to set the - /// for. - /// The point at which to set the . - private static void TrySetDitchPolderSide(this RingtoetsPipingSurfaceLine surfaceLine, Point3D point) + /// The to set the + /// for. + /// The point at which to set the . + private static void TrySetDitchPolderSide(this PipingSurfaceLine surfaceLine, Point3D point) { if (point != null) { @@ -88,13 +88,13 @@ } /// - /// Tries to set the at the location of + /// Tries to set the at the location of /// . /// - /// The to set the - /// for. - /// The point at which to set the . - private static void TrySetBottomDitchPolderSide(this RingtoetsPipingSurfaceLine surfaceLine, Point3D point) + /// The to set the + /// for. + /// The point at which to set the . + private static void TrySetBottomDitchPolderSide(this PipingSurfaceLine surfaceLine, Point3D point) { if (point != null) { @@ -110,13 +110,13 @@ } /// - /// Tries to set the at the location of + /// Tries to set the at the location of /// . /// - /// The to set the - /// for. - /// The point at which to set the . - private static void TrySetBottomDitchDikeSide(this RingtoetsPipingSurfaceLine surfaceLine, Point3D point) + /// The to set the + /// for. + /// The point at which to set the . + private static void TrySetBottomDitchDikeSide(this PipingSurfaceLine surfaceLine, Point3D point) { if (point != null) { @@ -132,13 +132,13 @@ } /// - /// Tries to set the at the location of + /// Tries to set the at the location of /// . /// - /// The to set the - /// for. - /// The point at which to set the . - private static void TrySetDitchDikeSide(this RingtoetsPipingSurfaceLine surfaceLine, Point3D point) + /// The to set the + /// for. + /// The point at which to set the . + private static void TrySetDitchDikeSide(this PipingSurfaceLine surfaceLine, Point3D point) { if (point != null) { @@ -154,13 +154,13 @@ } /// - /// Tries to set the at the location of + /// Tries to set the at the location of /// . /// - /// The to set the - /// for. - /// The point at which to set the . - private static void TrySetDikeToeAtRiver(this RingtoetsPipingSurfaceLine surfaceLine, Point3D point) + /// The to set the + /// for. + /// The point at which to set the . + private static void TrySetDikeToeAtRiver(this PipingSurfaceLine surfaceLine, Point3D point) { if (point != null) { @@ -176,13 +176,13 @@ } /// - /// Tries to set the at the location of + /// Tries to set the at the location of /// . /// - /// The to set the - /// for. - /// The point at which to set the . - private static void TrySetDikeToeAtPolder(this RingtoetsPipingSurfaceLine surfaceLine, Point3D point) + /// The to set the + /// for. + /// The point at which to set the . + private static void TrySetDikeToeAtPolder(this PipingSurfaceLine surfaceLine, Point3D point) { if (point != null) { @@ -197,7 +197,7 @@ } } - private static void LogError(RingtoetsPipingSurfaceLine surfaceLine, ArgumentException e) + private static void LogError(PipingSurfaceLine surfaceLine, ArgumentException e) { log.ErrorFormat(Resources.SurfaceLinesCsvImporter_CharacteristicPoint_of_SurfaceLine_0_skipped_cause_1_, surfaceLine.Name, @@ -210,7 +210,7 @@ /// The surface line. /// The characteristic points (possibly) containing the dike toes. /// Thrown when the dike toes are not in the right order. - private static void ValidateDikeToesInOrder(this RingtoetsPipingSurfaceLine surfaceLine, CharacteristicPoints characteristicPoints) + private static void ValidateDikeToesInOrder(this PipingSurfaceLine surfaceLine, CharacteristicPoints characteristicPoints) { if (characteristicPoints.DikeToeAtRiver != null && characteristicPoints.DikeToeAtPolder != null) {