Index: Riskeer/DuneErosion/src/Riskeer.DuneErosion.Data/DuneErosionFailureMechanism.cs =================================================================== diff -u -rb9f216c2c0489b809f7e692687984c98a54a85df -r5089d09c278de393b6684c5563f98474ca4cc1a3 --- Riskeer/DuneErosion/src/Riskeer.DuneErosion.Data/DuneErosionFailureMechanism.cs (.../DuneErosionFailureMechanism.cs) (revision b9f216c2c0489b809f7e692687984c98a54a85df) +++ Riskeer/DuneErosion/src/Riskeer.DuneErosion.Data/DuneErosionFailureMechanism.cs (.../DuneErosionFailureMechanism.cs) (revision 5089d09c278de393b6684c5563f98474ca4cc1a3) @@ -34,7 +34,6 @@ /// public class DuneErosionFailureMechanism : FailureMechanismBase { - private readonly ObservableList sectionResults; private readonly ObservableList calculationsForMechanismSpecificFactorizedSignalingNorm = new ObservableList(); private readonly ObservableList calculationsForMechanismSpecificSignalingNorm = new ObservableList(); private readonly ObservableList calculationsForMechanismSpecificLowerLimitNorm = new ObservableList(); @@ -48,10 +47,17 @@ public DuneErosionFailureMechanism() : base(Resources.DuneErosionFailureMechanism_DisplayName, Resources.DuneErosionFailureMechanism_Code, 3) { - sectionResults = new ObservableList(); GeneralInput = new GeneralDuneErosionInput(); } + public override IEnumerable Calculations + { + get + { + yield break; + } + } + /// /// Gets the general dune erosion calculation input parameters that apply to each calculation. /// @@ -123,14 +129,6 @@ } } - public override IEnumerable Calculations - { - get - { - yield break; - } - } - /// /// Sets dune locations and calculations for the failure mechanism. /// @@ -152,13 +150,6 @@ } } - protected override void AddSectionResult(FailureMechanismSection section) - { - base.AddSectionResult(section); - - sectionResults.Add(new DuneErosionFailureMechanismSectionResult(section)); - } - private void ClearDuneLocationData() { duneLocationCollection.Clear(); Fisheye: Tag 5089d09c278de393b6684c5563f98474ca4cc1a3 refers to a dead (removed) revision in file `Riskeer/DuneErosion/src/Riskeer.DuneErosion.Data/DuneErosionFailureMechanismSectionResult.cs'. Fisheye: No comparison available. Pass `N' to diff? Index: Riskeer/GrassCoverErosionInwards/src/Riskeer.GrassCoverErosionInwards.Data/GrassCoverErosionInwardsFailureMechanism.cs =================================================================== diff -u -rb9f216c2c0489b809f7e692687984c98a54a85df -r5089d09c278de393b6684c5563f98474ca4cc1a3 --- Riskeer/GrassCoverErosionInwards/src/Riskeer.GrassCoverErosionInwards.Data/GrassCoverErosionInwardsFailureMechanism.cs (.../GrassCoverErosionInwardsFailureMechanism.cs) (revision b9f216c2c0489b809f7e692687984c98a54a85df) +++ Riskeer/GrassCoverErosionInwards/src/Riskeer.GrassCoverErosionInwards.Data/GrassCoverErosionInwardsFailureMechanism.cs (.../GrassCoverErosionInwardsFailureMechanism.cs) (revision 5089d09c278de393b6684c5563f98474ca4cc1a3) @@ -21,7 +21,6 @@ using System.Collections.Generic; using System.Linq; -using Core.Common.Base; using Riskeer.Common.Data.Calculation; using Riskeer.Common.Data.DikeProfiles; using Riskeer.Common.Data.FailureMechanism; @@ -36,8 +35,6 @@ public class GrassCoverErosionInwardsFailureMechanism : FailureMechanismBase, ICalculatableFailureMechanism { - private readonly ObservableList sectionResults; - /// /// Initializes a new instance of the class. /// @@ -49,7 +46,6 @@ Name = RiskeerCommonDataResources.FailureMechanism_Calculations_DisplayName }; GeneralInput = new GeneralGrassCoverErosionInwardsInput(); - sectionResults = new ObservableList(); DikeProfiles = new DikeProfileCollection(); } @@ -72,12 +68,5 @@ return CalculationsGroup.GetCalculations().OfType(); } } - - protected override void AddSectionResult(FailureMechanismSection section) - { - base.AddSectionResult(section); - - sectionResults.Add(new GrassCoverErosionInwardsFailureMechanismSectionResult(section)); - } } } \ No newline at end of file Fisheye: Tag 5089d09c278de393b6684c5563f98474ca4cc1a3 refers to a dead (removed) revision in file `Riskeer/GrassCoverErosionInwards/src/Riskeer.GrassCoverErosionInwards.Data/GrassCoverErosionInwardsFailureMechanismSectionResult.cs'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 5089d09c278de393b6684c5563f98474ca4cc1a3 refers to a dead (removed) revision in file `Riskeer/GrassCoverErosionInwards/src/Riskeer.GrassCoverErosionInwards.Data/GrassCoverErosionInwardsFailureMechanismSectionResultDetailedAssessmentExtensions.cs'. Fisheye: No comparison available. Pass `N' to diff? Index: Riskeer/GrassCoverErosionOutwards/src/Riskeer.GrassCoverErosionOutwards.Data/GrassCoverErosionOutwardsFailureMechanism.cs =================================================================== diff -u -rb9f216c2c0489b809f7e692687984c98a54a85df -r5089d09c278de393b6684c5563f98474ca4cc1a3 --- Riskeer/GrassCoverErosionOutwards/src/Riskeer.GrassCoverErosionOutwards.Data/GrassCoverErosionOutwardsFailureMechanism.cs (.../GrassCoverErosionOutwardsFailureMechanism.cs) (revision b9f216c2c0489b809f7e692687984c98a54a85df) +++ Riskeer/GrassCoverErosionOutwards/src/Riskeer.GrassCoverErosionOutwards.Data/GrassCoverErosionOutwardsFailureMechanism.cs (.../GrassCoverErosionOutwardsFailureMechanism.cs) (revision 5089d09c278de393b6684c5563f98474ca4cc1a3) @@ -38,7 +38,6 @@ /// public class GrassCoverErosionOutwardsFailureMechanism : FailureMechanismBase { - private readonly ObservableList sectionResults; private readonly ObservableList waterLevelCalculationsForMechanismSpecificFactorizedSignalingNorm = new ObservableList(); private readonly ObservableList waterLevelCalculationsForMechanismSpecificSignalingNorm = new ObservableList(); private readonly ObservableList waterLevelCalculationsForMechanismSpecificLowerLimitNorm = new ObservableList(); @@ -52,7 +51,6 @@ public GrassCoverErosionOutwardsFailureMechanism() : base(Resources.GrassCoverErosionOutwardsFailureMechanism_DisplayName, Resources.GrassCoverErosionOutwardsFailureMechanism_Code, 3) { - sectionResults = new ObservableList(); GeneralInput = new GeneralGrassCoverErosionOutwardsInput(); WaveConditionsCalculationGroup = new CalculationGroup { @@ -170,12 +168,6 @@ } } - protected override void AddSectionResult(FailureMechanismSection section) - { - base.AddSectionResult(section); - sectionResults.Add(new GrassCoverErosionOutwardsFailureMechanismSectionResult(section)); - } - private void ClearHydraulicBoundaryLocationCalculations() { waterLevelCalculationsForMechanismSpecificFactorizedSignalingNorm.Clear(); Fisheye: Tag 5089d09c278de393b6684c5563f98474ca4cc1a3 refers to a dead (removed) revision in file `Riskeer/GrassCoverErosionOutwards/src/Riskeer.GrassCoverErosionOutwards.Data/GrassCoverErosionOutwardsFailureMechanismSectionResult.cs'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 5089d09c278de393b6684c5563f98474ca4cc1a3 refers to a dead (removed) revision in file `Riskeer/Storage/src/Riskeer.Storage.Core/Create/DuneErosion/DuneErosionFailureMechanismSectionResultCreateExtensions.cs'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 5089d09c278de393b6684c5563f98474ca4cc1a3 refers to a dead (removed) revision in file `Riskeer/Storage/src/Riskeer.Storage.Core/Create/GrassCoverErosionInwards/GrassCoverErosionInwardsFailureMechanismSectionResultCreateExtensions.cs'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 5089d09c278de393b6684c5563f98474ca4cc1a3 refers to a dead (removed) revision in file `Riskeer/Storage/src/Riskeer.Storage.Core/Create/GrassCoverErosionOutwards/GrassCoverErosionOutwardsFailureMechanismSectionResultCreateExtensions.cs'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 5089d09c278de393b6684c5563f98474ca4cc1a3 refers to a dead (removed) revision in file `Riskeer/Storage/src/Riskeer.Storage.Core/Read/DuneErosion/DuneErosionSectionResultEntityReadExtensions.cs'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 5089d09c278de393b6684c5563f98474ca4cc1a3 refers to a dead (removed) revision in file `Riskeer/Storage/src/Riskeer.Storage.Core/Read/GrassCoverErosionInwards/GrassCoverErosionInwardsSectionResultEntityReadExtensions.cs'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 5089d09c278de393b6684c5563f98474ca4cc1a3 refers to a dead (removed) revision in file `Riskeer/Storage/src/Riskeer.Storage.Core/Read/GrassCoverErosionOutwards/GrassCoverErosionOutwardsSectionResultEntityReadExtensions.cs'. Fisheye: No comparison available. Pass `N' to diff?