Index: Ringtoets/Common/src/Ringtoets.Common.IO/FileImporters/StructuresImporter.cs =================================================================== diff -u -rd75706d5c26b844e76d93f6c1879d3acbf98cf77 -r57bd864138c692aba489b0715e12fff05708d544 --- Ringtoets/Common/src/Ringtoets.Common.IO/FileImporters/StructuresImporter.cs (.../StructuresImporter.cs) (revision d75706d5c26b844e76d93f6c1879d3acbf98cf77) +++ Ringtoets/Common/src/Ringtoets.Common.IO/FileImporters/StructuresImporter.cs (.../StructuresImporter.cs) (revision 57bd864138c692aba489b0715e12fff05708d544) @@ -112,15 +112,6 @@ protected abstract void CreateSpecificStructures(ICollection structureLocations, Dictionary> groupedStructureParameterRows); - protected void LogMessages(ValidationResult validationResult, int structureIndex) - { - foreach (string message in validationResult.ErrorMessages) - { - Log.Error(message); - } - Log.ErrorFormat(Resources.StructuresImporter_Structure_number_0_is_skipped, structureIndex); - } - protected RoundedDouble GetStandardDeviation(StructuresParameterRow structuresParameterRow, string structureName) { if (structuresParameterRow.VarianceType == VarianceType.CoefficientOfVariation) @@ -153,7 +144,7 @@ Log.Error(message); } - protected string GetStructureDataCsvFilePath() + private string GetStructureDataCsvFilePath() { return Path.ChangeExtension(FilePath, ".csv"); } Index: Ringtoets/Common/src/Ringtoets.Common.IO/Structures/StructuresParameterRowsValidator.cs =================================================================== diff -u -r485254f159763215292faa9bc7f5251f2730ce90 -r57bd864138c692aba489b0715e12fff05708d544 --- Ringtoets/Common/src/Ringtoets.Common.IO/Structures/StructuresParameterRowsValidator.cs (.../StructuresParameterRowsValidator.cs) (revision 485254f159763215292faa9bc7f5251f2730ce90) +++ Ringtoets/Common/src/Ringtoets.Common.IO/Structures/StructuresParameterRowsValidator.cs (.../StructuresParameterRowsValidator.cs) (revision 57bd864138c692aba489b0715e12fff05708d544) @@ -34,7 +34,7 @@ /// /// Denotes a small enough value, taking possible rounding into account, that the /// value is too close to the value 0.0 that makes a coefficient of variation - /// to unreliable. + /// too unreliable. /// private const double valueTooCloseToZero = 1e-4;