Index: Ringtoets/Common/src/Ringtoets.Common.Data/IllustrationPoints/GeneralResult.cs =================================================================== diff -u -r831379390ac72116a2f1c3a014063bbd60ab928d -r5899c392963028438e1f12b64d21373b71866852 --- Ringtoets/Common/src/Ringtoets.Common.Data/IllustrationPoints/GeneralResult.cs (.../GeneralResult.cs) (revision 831379390ac72116a2f1c3a014063bbd60ab928d) +++ Ringtoets/Common/src/Ringtoets.Common.Data/IllustrationPoints/GeneralResult.cs (.../GeneralResult.cs) (revision 5899c392963028438e1f12b64d21373b71866852) @@ -123,14 +123,14 @@ var topLevelFaultTreeIllustrationPoint = topLevelIllustrationPoint as TopLevelFaultTreeIllustrationPoint; if (topLevelFaultTreeIllustrationPoint != null) { - childStochastNames.AddRange(topLevelFaultTreeIllustrationPoint.FaultTreeNodeRoot.GetStochastNamesRecursively()); + childStochastNames.AddRange(topLevelFaultTreeIllustrationPoint.GetStochastNamesRecursively()); continue; } var topLevelSubMechanismIllustrationPoint = topLevelIllustrationPoint as TopLevelSubMechanismIllustrationPoint; if (topLevelSubMechanismIllustrationPoint != null) { - childStochastNames.AddRange(topLevelSubMechanismIllustrationPoint.SubMechanismIllustrationPoint.GetStochastNames()); + childStochastNames.AddRange(topLevelSubMechanismIllustrationPoint.GetStochastNames()); } }