Index: Ringtoets/Common/src/Ringtoets.Common.Data/Probability/ProbabilityAssessmentInput.cs =================================================================== diff -u -r9a1a700023ce9d02b5257434c45455f39ddd8bf2 -r06f95f8ac2bd80176a952183c0bb4e0154b1fc3e --- Ringtoets/Common/src/Ringtoets.Common.Data/Probability/ProbabilityAssessmentInput.cs (.../ProbabilityAssessmentInput.cs) (revision 9a1a700023ce9d02b5257434c45455f39ddd8bf2) +++ Ringtoets/Common/src/Ringtoets.Common.Data/Probability/ProbabilityAssessmentInput.cs (.../ProbabilityAssessmentInput.cs) (revision 06f95f8ac2bd80176a952183c0bb4e0154b1fc3e) @@ -29,7 +29,6 @@ /// public class ProbabilityAssessmentInput { - private double contribution; private int n; /// @@ -38,7 +37,6 @@ public ProbabilityAssessmentInput() { N = 2; - Contribution = double.NaN; } /// @@ -61,27 +59,5 @@ n = value; } } - - /// - /// Gets or sets the contribution of the failure mechanism as a percentage (0-100) to the total of the - /// failure probability of the assessment section. - /// - /// Thrown when the is not - /// in interval [1-100]. - public double Contribution - { - get - { - return contribution; - } - set - { - if (value < 0 || value > 100) - { - throw new ArgumentOutOfRangeException("value", Resources.Contribution_Value_should_be_in_interval_0_100); - } - contribution = value; - } - } } } \ No newline at end of file