Index: Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.IO/SoilProfiles/MacroStabilityInwardsSoilLayerTransformer.cs =================================================================== diff -u -r6f1f1f2dc45d71b0b40c6a84ed233d50f04c4b62 -r604dfe021f6161f8e5d107dd5821ba06390c5ecf --- Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.IO/SoilProfiles/MacroStabilityInwardsSoilLayerTransformer.cs (.../MacroStabilityInwardsSoilLayerTransformer.cs) (revision 6f1f1f2dc45d71b0b40c6a84ed233d50f04c4b62) +++ Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.IO/SoilProfiles/MacroStabilityInwardsSoilLayerTransformer.cs (.../MacroStabilityInwardsSoilLayerTransformer.cs) (revision 604dfe021f6161f8e5d107dd5821ba06390c5ecf) @@ -230,34 +230,34 @@ /// stochastic parameters is not defined as lognormal or is shifted when it should not be. private static void ValidateStochasticParameters(SoilLayerBase soilLayer) { - SoilLayerDistributionHelper.ValidateIsLogNormal(soilLayer.AbovePhreaticLevelDistributionType, + DistributionHelper.ValidateIsLogNormal(soilLayer.AbovePhreaticLevelDistributionType, Resources.SoilLayerProperties_AbovePhreaticLevelDistribution_Description); - SoilLayerDistributionHelper.ValidateIsLogNormal( + DistributionHelper.ValidateIsLogNormal( soilLayer.BelowPhreaticLevelDistributionType, Resources.SoilLayerProperties_BelowPhreaticLevelDistribution_Description); - SoilLayerDistributionHelper.ValidateIsNonShiftedLogNormal( + DistributionHelper.ValidateIsNonShiftedLogNormal( soilLayer.CohesionDistributionType, soilLayer.CohesionShift, Resources.SoilLayerProperties_CohesionDistribution_Description); - SoilLayerDistributionHelper.ValidateIsNonShiftedLogNormal( + DistributionHelper.ValidateIsNonShiftedLogNormal( soilLayer.FrictionAngleDistributionType, soilLayer.FrictionAngleShift, Resources.SoilLayerProperties_FrictionAngleDistribution_Description); - SoilLayerDistributionHelper.ValidateIsNonShiftedLogNormal( + DistributionHelper.ValidateIsNonShiftedLogNormal( soilLayer.ShearStrengthRatioDistributionType, soilLayer.ShearStrengthRatioShift, Resources.SoilLayerProperties_ShearStrengthRatioDistribution_Description); - SoilLayerDistributionHelper.ValidateIsNonShiftedLogNormal( + DistributionHelper.ValidateIsNonShiftedLogNormal( soilLayer.StrengthIncreaseExponentDistributionType, soilLayer.StrengthIncreaseExponentShift, Resources.SoilLayerProperties_StrengthIncreaseExponentDistribution_Description); - SoilLayerDistributionHelper.ValidateIsNonShiftedLogNormal( + DistributionHelper.ValidateIsNonShiftedLogNormal( soilLayer.PopDistributionType, soilLayer.PopShift, Resources.SoilLayerProperties_PopDistribution_Description);