Index: Ringtoets/WaveImpactAsphaltCover/src/Ringtoets.WaveImpactAsphaltCover.Plugin/WaveImpactAsphaltCoverPlugin.cs =================================================================== diff -u -rc0d30f326bbc7308be94ba7a77ee37744cb7bee5 -rd72a7a2a430e8adaaf5357c10feb66e1f715d3b6 --- Ringtoets/WaveImpactAsphaltCover/src/Ringtoets.WaveImpactAsphaltCover.Plugin/WaveImpactAsphaltCoverPlugin.cs (.../WaveImpactAsphaltCoverPlugin.cs) (revision c0d30f326bbc7308be94ba7a77ee37744cb7bee5) +++ Ringtoets/WaveImpactAsphaltCover/src/Ringtoets.WaveImpactAsphaltCover.Plugin/WaveImpactAsphaltCoverPlugin.cs (.../WaveImpactAsphaltCoverPlugin.cs) (revision d72a7a2a430e8adaaf5357c10feb66e1f715d3b6) @@ -28,7 +28,6 @@ using Core.Common.Gui.ContextMenu; using Core.Common.Gui.Forms.ProgressDialog; using Core.Common.Gui.Plugin; -using Ringtoets.Common.Data; using Ringtoets.Common.Data.AssessmentSection; using Ringtoets.Common.Data.Calculation; using Ringtoets.Common.Forms; @@ -233,7 +232,7 @@ { return new object[] { - new CommentContext(failureMechanismContext.WrappedData.NotRelevantComments) + failureMechanismContext.WrappedData.NotRelevantComments }; } @@ -243,7 +242,7 @@ { new FailureMechanismSectionsContext(failureMechanism, assessmentSection), new ForeshoreProfilesContext(failureMechanism.ForeshoreProfiles, failureMechanism, assessmentSection), - new CommentContext(failureMechanism.InputComments) + failureMechanism.InputComments }; } @@ -253,7 +252,7 @@ { new FailureMechanismSectionResultContext( failureMechanism.SectionResults, failureMechanism), - new CommentContext(failureMechanism.OutputComments) + failureMechanism.OutputComments }; } @@ -511,7 +510,7 @@ { var childNodes = new List { - new CommentContext(context.WrappedData.Comments), + context.WrappedData.Comments, new WaveImpactAsphaltCoverWaveConditionsInputContext(context.WrappedData.InputParameters, context.FailureMechanism.ForeshoreProfiles, context.AssessmentSection)