Index: Ringtoets/Integration/src/Ringtoets.Integration.Service/RingtoetsDataSynchronizationService.cs =================================================================== diff -u -r98bb82fc9a5d16eab7a9d25b69f20806ef10a1f1 -ra60ce4ca3df3613160ce8c762b35ed848543d3a2 --- Ringtoets/Integration/src/Ringtoets.Integration.Service/RingtoetsDataSynchronizationService.cs (.../RingtoetsDataSynchronizationService.cs) (revision 98bb82fc9a5d16eab7a9d25b69f20806ef10a1f1) +++ Ringtoets/Integration/src/Ringtoets.Integration.Service/RingtoetsDataSynchronizationService.cs (.../RingtoetsDataSynchronizationService.cs) (revision a60ce4ca3df3613160ce8c762b35ed848543d3a2) @@ -29,7 +29,6 @@ using Ringtoets.Common.Data.Calculation; using Ringtoets.Common.Data.DikeProfiles; using Ringtoets.Common.Data.FailureMechanism; -using Ringtoets.Common.Data.Hydraulics; using Ringtoets.Common.Data.Structures; using Ringtoets.Common.Service; using Ringtoets.DuneErosion.Data; @@ -230,20 +229,14 @@ } /// - /// Clears the output of the hydraulic boundary locations within the and the - /// hydraulic boundary locations that are contained within specific failure mechanisms of the . + /// Clears the hydraulic boundary location calculation output that is contained within specific failure mechanisms the + /// and within it. /// - /// The which contains the locations. /// The which contains the failure mechanisms. /// All objects affected by the operation. /// Thrown when any parameter is null. - public static IEnumerable ClearHydraulicBoundaryLocationOutput(HydraulicBoundaryDatabase hydraulicBoundaryDatabase, IAssessmentSection assessmentSection) + public static IEnumerable ClearHydraulicBoundaryLocationOutput(IAssessmentSection assessmentSection) { - if (hydraulicBoundaryDatabase == null) - { - throw new ArgumentNullException(nameof(hydraulicBoundaryDatabase)); - } - if (assessmentSection == null) { throw new ArgumentNullException(nameof(assessmentSection)); @@ -265,7 +258,7 @@ } /// - /// Clears the output of the hydraulic boundary locations that are contained within specific failure mechanisms + /// Clears the hydraulic boundary location calculation output that is contained within specific failure mechanisms /// of the . /// /// The which contains the failure mechanisms. @@ -282,9 +275,9 @@ } /// - /// Clears the output of the hydraulic boundary locations that are contained within specific . + /// Clears the hydraulic boundary location calculation outputs that are contained within specific . /// - /// The failure mechanisms to clear the hydraulic boundary locations for. + /// The failure mechanisms to clear the hydraulic boundary location calculations outputs for. /// All objects affected by the operation. /// Thrown when is null. public static IEnumerable ClearHydraulicBoundaryLocationOutputOfFailureMechanisms(IEnumerable failureMechanisms)