Index: Riskeer/Common/src/Riskeer.Common.Forms/PropertyClasses/StructuresOutputProperties.cs =================================================================== diff -u -re3422ff344de83f9cc3331b5af2c453dd730c74d -ra3b32ac6f1d51a30689ef6ef6475ebac82a5d5b1 --- Riskeer/Common/src/Riskeer.Common.Forms/PropertyClasses/StructuresOutputProperties.cs (.../StructuresOutputProperties.cs) (revision e3422ff344de83f9cc3331b5af2c453dd730c74d) +++ Riskeer/Common/src/Riskeer.Common.Forms/PropertyClasses/StructuresOutputProperties.cs (.../StructuresOutputProperties.cs) (revision a3b32ac6f1d51a30689ef6ef6475ebac82a5d5b1) @@ -23,6 +23,7 @@ using System.ComponentModel; using System.Linq; using Core.Common.Base.Data; +using Core.Common.Util; using Core.Common.Util.Attributes; using Core.Common.Util.Extensions; using Core.Gui.Attributes; @@ -41,8 +42,6 @@ /// public abstract class StructuresOutputProperties : ObjectProperties { - private ProbabilityAssessmentOutput derivedOutput; - /// /// Creates a new instance of . /// @@ -128,7 +127,7 @@ { get { - return ProbabilityFormattingHelper.Format(DerivedOutput.Probability); + return ProbabilityFormattingHelper.Format(StatisticsConverter.ReliabilityToProbability(data.Reliability)); } } @@ -140,7 +139,7 @@ { get { - return DerivedOutput.Reliability; + return new RoundedDouble(5, data.Reliability); } } @@ -160,14 +159,6 @@ /// The created derived output. protected abstract ProbabilityAssessmentOutput CreateDerivedOutput(); - private ProbabilityAssessmentOutput DerivedOutput - { - get - { - return derivedOutput ?? (derivedOutput = CreateDerivedOutput()); - } - } - private TopLevelFaultTreeIllustrationPointProperties[] GetTopLevelFaultTreeIllustrationPointProperties(bool areClosingSituationsSame) { return data.GeneralResult