Index: Ringtoets/Common/src/Ringtoets.Common.Forms/PresentationObjects/FailureMechanismContext.cs =================================================================== diff -u -r3434a272cc8bfb25dae4bd7bd50afedb377343c0 -rc116b4635603c6d5bbdedb837f68fd3839ece6ca --- Ringtoets/Common/src/Ringtoets.Common.Forms/PresentationObjects/FailureMechanismContext.cs (.../FailureMechanismContext.cs) (revision 3434a272cc8bfb25dae4bd7bd50afedb377343c0) +++ Ringtoets/Common/src/Ringtoets.Common.Forms/PresentationObjects/FailureMechanismContext.cs (.../FailureMechanismContext.cs) (revision c116b4635603c6d5bbdedb837f68fd3839ece6ca) @@ -32,14 +32,14 @@ /// /// Initializes a new instance of the class. /// - /// The failure mechanism. - /// The parent of . - /// Thrown when or are null. - protected FailureMechanismContext(T wrappedFailureMechanism, IAssessmentSection parent) + /// The failure mechanism. + /// The parent of . + /// Thrown when or are null. + protected FailureMechanismContext(T wrapped, IAssessmentSection parent) { - AssertInputsAreNotNull(wrappedFailureMechanism, parent); + AssertInputsAreNotNull(wrapped, parent); - WrappedData = wrappedFailureMechanism; + WrappedData = wrapped; Parent = parent; }