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