Index: Ringtoets/Common/test/Ringtoets.Common.IO.Test/FileImporters/FailureMechanismSectionsImporterTest.cs =================================================================== diff -u -r7135385a10443af1369b1b9e814b8b762366f64b -r3833e961c5eee7069dd31adf56374c96b7c6c4d0 --- Ringtoets/Common/test/Ringtoets.Common.IO.Test/FileImporters/FailureMechanismSectionsImporterTest.cs (.../FailureMechanismSectionsImporterTest.cs) (revision 7135385a10443af1369b1b9e814b8b762366f64b) +++ Ringtoets/Common/test/Ringtoets.Common.IO.Test/FileImporters/FailureMechanismSectionsImporterTest.cs (.../FailureMechanismSectionsImporterTest.cs) (revision 3833e961c5eee7069dd31adf56374c96b7c6c4d0) @@ -667,15 +667,12 @@ private class TestFailureMechanismSectionUpdateStrategy : IFailureMechanismSectionUpdateStrategy { - public bool Updated { get; private set; } - public string SourcePath { get; private set; } public IEnumerable ImportedFailureMechanismSections { get; private set; } public void UpdateSectionsWithImportedData(IEnumerable importedFailureMechanismSections, string sourcePath) { - Updated = true; SourcePath = sourcePath; ImportedFailureMechanismSections = importedFailureMechanismSections; } @@ -749,7 +746,7 @@ .Min(); } - private IEnumerable GetLineSegments(IEnumerable linePoints) + private static IEnumerable GetLineSegments(IEnumerable linePoints) { Point2D endPoint = null; foreach (Point2D linePoint in linePoints)