Index: Ringtoets/Piping/src/Ringtoets.Piping.IO/SoilProfiles/PipingSoilLayerTransformer.cs =================================================================== diff -u -r94cb41fb18a59fc737dd3bcaf0e1898a3fadcaa5 -r8cdbb1c76ccda6f711ec3bb02339896e7eb660c0 --- Ringtoets/Piping/src/Ringtoets.Piping.IO/SoilProfiles/PipingSoilLayerTransformer.cs (.../PipingSoilLayerTransformer.cs) (revision 94cb41fb18a59fc737dd3bcaf0e1898a3fadcaa5) +++ Ringtoets/Piping/src/Ringtoets.Piping.IO/SoilProfiles/PipingSoilLayerTransformer.cs (.../PipingSoilLayerTransformer.cs) (revision 8cdbb1c76ccda6f711ec3bb02339896e7eb660c0) @@ -156,14 +156,14 @@ /// stochastic parameters is not defined as lognormal or is shifted when it should not be. private static void ValidateStochasticParameters(SoilLayerBase soilLayer) { - DistributionHelper.ValidateIsLogNormal( + DistributionHelper.ValidateShiftedLogNormalDistribution( soilLayer.BelowPhreaticLevelDistributionType, Resources.SoilLayer_BelowPhreaticLevelDistribution_DisplayName); - DistributionHelper.ValidateIsNonShiftedLogNormal( + DistributionHelper.ValidateLogNormalDistribution( soilLayer.DiameterD70DistributionType, soilLayer.DiameterD70Shift, Resources.SoilLayer_DiameterD70Distribution_DisplayName); - DistributionHelper.ValidateIsNonShiftedLogNormal( + DistributionHelper.ValidateLogNormalDistribution( soilLayer.PermeabilityDistributionType, soilLayer.PermeabilityShift, Resources.SoilLayer_PermeabilityDistribution_DisplayName);