Index: Ringtoets/Common/src/Ringtoets.Common.IO/FileImporters/CalculationConfigurationImporter.cs =================================================================== diff -u -r335523a40d190e19b1061804de21c28f74140f52 -r1127011aaf7ba5f521e709a7ab54d212e1a18fe3 --- Ringtoets/Common/src/Ringtoets.Common.IO/FileImporters/CalculationConfigurationImporter.cs (.../CalculationConfigurationImporter.cs) (revision 335523a40d190e19b1061804de21c28f74140f52) +++ Ringtoets/Common/src/Ringtoets.Common.IO/FileImporters/CalculationConfigurationImporter.cs (.../CalculationConfigurationImporter.cs) (revision 1127011aaf7ba5f521e709a7ab54d212e1a18fe3) @@ -136,7 +136,11 @@ /// the name was found, false otherwise. /// Thrown when /// or is null. - protected bool TryReadHydraulicBoundaryLocation(string locationName, string calculationName, IEnumerable hydraulicBoundaryLocations, out HydraulicBoundaryLocation foundLocation) + protected bool TryReadHydraulicBoundaryLocation( + string locationName, + string calculationName, + IEnumerable hydraulicBoundaryLocations, + out HydraulicBoundaryLocation foundLocation) { if (calculationName == null) { @@ -182,7 +186,11 @@ /// the name was found, false otherwise. /// Thrown when /// or is null. - protected bool TryReadStructure(string structureName, string calculationName, IEnumerable structures, out T foundStructure) + protected bool TryReadStructure( + string structureName, + string calculationName, + IEnumerable structures, + out T foundStructure) where T : StructureBase { if (calculationName == null) @@ -227,7 +235,11 @@ /// the name was found, false otherwise. /// Thrown when /// or is null. - protected bool TryReadForeshoreProfile(string foreshoreProfileName, string calculationName, IEnumerable foreshoreProfiles, out ForeshoreProfile foundForeshoreProfile) + protected bool TryReadForeshoreProfile( + string foreshoreProfileName, + string calculationName, + IEnumerable foreshoreProfiles, + out ForeshoreProfile foundForeshoreProfile) { if (calculationName == null) { @@ -300,7 +312,7 @@ /// The type of the calculation input. /// The name of the calculation to configure. /// The stochast's name. - /// + /// The input for which to assign the read stochast. /// The configuration of the stochast. /// The function for obtaining the stochast to read. /// The function to set the stochast with the read parameters. @@ -339,7 +351,7 @@ /// The type of the calculation input. /// The name of the calculation to configure. /// The stochast's name. - /// + /// The input for which to assign the read stochast. /// The configuration of the stochast. /// The function for obtaining the stochast to read. /// The function to set the stochast with the read parameters.