Index: Ringtoets/Piping/src/Ringtoets.Piping.Forms/PipingCalculationConfigurationHelper.cs =================================================================== diff -u -r4017868c654334a4acf2cf3d4abd21358f4c38aa -rac582bc093c8a275cd9b5dc2148af313b5242062 --- Ringtoets/Piping/src/Ringtoets.Piping.Forms/PipingCalculationConfigurationHelper.cs (.../PipingCalculationConfigurationHelper.cs) (revision 4017868c654334a4acf2cf3d4abd21358f4c38aa) +++ Ringtoets/Piping/src/Ringtoets.Piping.Forms/PipingCalculationConfigurationHelper.cs (.../PipingCalculationConfigurationHelper.cs) (revision ac582bc093c8a275cd9b5dc2148af313b5242062) @@ -26,9 +26,7 @@ using Core.Common.Base.Geometry; using log4net; using Ringtoets.Common.Data.Calculation; -using Ringtoets.Common.Data.Hydraulics; using Ringtoets.Common.Forms.Helpers; -using Ringtoets.Common.Forms.UITypeEditors; using Ringtoets.Piping.Data; using Ringtoets.Piping.Forms.Properties; using Ringtoets.Piping.Primitives; @@ -113,24 +111,6 @@ .ToList(); } - /// - /// Gets the sorted selectable hydraulic boundary locations from . - /// - /// The available hydraulic boundary locations. - /// The reference point to which the distance needs to be - /// calculated in . - /// An ordered list of selectable hydraulic boundary locations. - public static IEnumerable GetSelectableHydraulicBoundaryLocations( - IEnumerable hydraulicBoundaryLocations, RingtoetsPipingSurfaceLine surfaceLine) - { - Point2D referencePoint = surfaceLine != null - ? surfaceLine.ReferenceLineIntersectionWorldPoint - : null; - return hydraulicBoundaryLocations.Select(hbl => new SelectableHydraulicBoundaryLocation(hbl, referencePoint)) - .OrderBy(hbl => hbl.Distance) - .ThenBy(hbl => hbl.HydraulicBoundaryLocation.Id); - } - private static CalculationGroup CreateCalculationGroup(RingtoetsPipingSurfaceLine surfaceLine, IEnumerable soilModels, GeneralPipingInput generalInput) { var calculationGroup = new CalculationGroup(surfaceLine.Name, true);