Index: Ringtoets/Piping/src/Ringtoets.Piping.Data/PipingProbabilityAssessmentInput.cs =================================================================== diff -u -raf62e374c37713df98c2866ec4bfa64206b5b2b3 -rb190a14336e0d8fe9aec34e81a68194081c76155 --- Ringtoets/Piping/src/Ringtoets.Piping.Data/PipingProbabilityAssessmentInput.cs (.../PipingProbabilityAssessmentInput.cs) (revision af62e374c37713df98c2866ec4bfa64206b5b2b3) +++ Ringtoets/Piping/src/Ringtoets.Piping.Data/PipingProbabilityAssessmentInput.cs (.../PipingProbabilityAssessmentInput.cs) (revision b190a14336e0d8fe9aec34e81a68194081c76155) @@ -20,7 +20,6 @@ // All rights reserved. using System; -using Core.Common.Base.Data; using Ringtoets.Piping.Data.Properties; namespace Ringtoets.Piping.Data @@ -31,7 +30,6 @@ public class PipingProbabilityAssessmentInput { private double a; - private RoundedDouble upliftCriticalSafetyFactor; /// /// Creates a new instance of . @@ -41,8 +39,6 @@ A = 0.4; B = 300.0; SectionLength = double.NaN; - - upliftCriticalSafetyFactor = new RoundedDouble(1, 1.2); } /// @@ -67,30 +63,6 @@ } /// - /// Gets or sets the critical safety factor to which the calculated uplift stability factor is compared. - /// - /// Thrown when the rounded is outside - /// range (0, 50]. - public RoundedDouble UpliftCriticalSafetyFactor - { - get - { - return upliftCriticalSafetyFactor; - } - set - { - var roundedValue = new RoundedDouble(upliftCriticalSafetyFactor.NumberOfDecimalPlaces, value); - if (roundedValue <= 0 || roundedValue > 50) - { - throw new ArgumentOutOfRangeException( - "value", - Resources.PipingProbabilityAssessmentInput_UpliftCriticalSafetyFactor_Value_must_be_in_range_zero_and_fifty); - } - upliftCriticalSafetyFactor = roundedValue; - } - } - - /// /// Gets 'b' parameter used to factor in the 'length effect' when determining the /// maximum tolerated probability of failure. ///