Index: Ringtoets/Common/src/Ringtoets.Common.Data/Probabilistics/LogNormalDistribution.cs =================================================================== diff -u -re1157c221217ef3b5ade6034183a7da0e620eb05 -r74cacfa40fb2533da72a8beafd523689036074da --- Ringtoets/Common/src/Ringtoets.Common.Data/Probabilistics/LogNormalDistribution.cs (.../LogNormalDistribution.cs) (revision e1157c221217ef3b5ade6034183a7da0e620eb05) +++ Ringtoets/Common/src/Ringtoets.Common.Data/Probabilistics/LogNormalDistribution.cs (.../LogNormalDistribution.cs) (revision 74cacfa40fb2533da72a8beafd523689036074da) @@ -30,7 +30,6 @@ /// public class LogNormalDistribution : IDistribution { - private readonly int numberOfDecimalPlaces; private RoundedDouble standardDeviation; private RoundedDouble mean; @@ -50,7 +49,6 @@ throw new ArgumentOutOfRangeException("numberOfDecimalPlaces", "Value must be in range [1, 15]."); } - this.numberOfDecimalPlaces = numberOfDecimalPlaces; // Simplified calculation mean and standard deviation given mu=0 and sigma=1. mean = new RoundedDouble(numberOfDecimalPlaces, Math.Exp(-0.5)); standardDeviation = new RoundedDouble(numberOfDecimalPlaces, Math.Sqrt((Math.Exp(1) - 1)*Math.Exp(1))); @@ -91,5 +89,5 @@ standardDeviation = value.ToPrecision(standardDeviation.NumberOfDecimalPlaces); } } - } + } } \ No newline at end of file