Index: Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.IO/HeightStructuresImporter.cs =================================================================== diff -u -r0e8c9f3912451d121375b590426837a3e6683dc5 -rce36fdd8e9af2866739cc67c82ea820f51533777 --- Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.IO/HeightStructuresImporter.cs (.../HeightStructuresImporter.cs) (revision 0e8c9f3912451d121375b590426837a3e6683dc5) +++ Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.IO/HeightStructuresImporter.cs (.../HeightStructuresImporter.cs) (revision ce36fdd8e9af2866739cc67c82ea820f51533777) @@ -71,7 +71,9 @@ ThrowValidationErrorForStructure(structureLocation.Name, structureLocation.Id, parameterRowsValidationResult.ErrorMessages); } - HeightStructure heightStructure = CreateHeightStructure(structureLocation, structureParameterRows); + IEnumerable heightStructureParameterRows = + StructuresParameterRowsValidator.GetRelevantHeightStructuresParameters(structureParameterRows); + HeightStructure heightStructure = CreateHeightStructure(structureLocation, heightStructureParameterRows); heightStructures.Add(heightStructure); } return heightStructures;